aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
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 /prosody
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 'prosody')
-rwxr-xr-xprosody2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosody b/prosody
index 7d9e76b8..a9ef6117 100755
--- a/prosody
+++ b/prosody
@@ -324,7 +324,7 @@ function load_secondary_libraries()
end});
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);