diff options
author | Kim Alvefur <zash@zash.se> | 2017-08-29 15:23:39 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-08-29 15:23:39 +0200 |
commit | fb7792a6d38c9bd82fa84f03972862e45b9a160a (patch) | |
tree | aee951cae280cf5c1bd83385cfbac8cc7bf05250 /prosodyctl | |
parent | 672ab9595bcadcefa5c8725fd0ba4d7d6089b4f5 (diff) | |
download | prosody-fb7792a6d38c9bd82fa84f03972862e45b9a160a.tar.gz prosody-fb7792a6d38c9bd82fa84f03972862e45b9a160a.zip |
prosody, prosodyctl: Fix traceback if ssl config is missing (thanks lookshe and sol)
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |