prosody, prosodyctl: Fix traceback if ssl config is missing (thanks lookshe and sol)

This commit is contained in:
Kim Alvefur 2017-08-29 15:23:39 +02:00
parent 7e28119b3d
commit 0147d39460
2 changed files with 2 additions and 2 deletions

View file

@ -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);