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 | |
parent | 7e28119b3d3fe91b2f8541da2af90b232ab38412 (diff) | |
download | prosody-0147d39460cc20d670a97a627be5f097ef5372af.tar.gz prosody-0147d39460cc20d670a97a627be5f097ef5372af.zip |
prosody, prosodyctl: Fix traceback if ssl config is missing (thanks lookshe and sol)
-rwxr-xr-x | prosody | 2 | ||||
-rwxr-xr-x | prosodyctl | 2 |
2 files changed, 2 insertions, 2 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); @@ -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); |