aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-08-29 15:23:39 +0200
committerKim Alvefur <zash@zash.se>2017-08-29 15:23:39 +0200
commit0147d39460cc20d670a97a627be5f097ef5372af (patch)
treeaee951cae280cf5c1bd83385cfbac8cc7bf05250 /prosodyctl
parent7e28119b3d3fe91b2f8541da2af90b232ab38412 (diff)
downloadprosody-0147d39460cc20d670a97a627be5f097ef5372af.tar.gz
prosody-0147d39460cc20d670a97a627be5f097ef5372af.zip
prosody, prosodyctl: Fix traceback if ssl config is missing (thanks lookshe and sol)
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosodyctl b/prosodyctl
index cd58212e..ce81877d 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -253,7 +253,7 @@ local prosodyctl = require "util.prosodyctl"
local socket = require "socket"
local http = require "net.http"
-local config_ssl = config.get("*", "ssl")
+local config_ssl = config.get("*", "ssl") or {}
local https_client = config.get("*", "client_https_ssl")
http.default.options.sslctx = require "core.certmanager".create_context("client_https port 0", "client",
{ capath = config_ssl.capath, cafile = config_ssl.cafile, verify = "peer", }, https_client);