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 | 0147d39460cc20d670a97a627be5f097ef5372af (patch) | |
tree | aee951cae280cf5c1bd83385cfbac8cc7bf05250 /prosody | |
parent | 7e28119b3d3fe91b2f8541da2af90b232ab38412 (diff) | |
download | prosody-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-x | prosody | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |