From 0147d39460cc20d670a97a627be5f097ef5372af Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 29 Aug 2017 15:23:39 +0200 Subject: prosody, prosodyctl: Fix traceback if ssl config is missing (thanks lookshe and sol) --- prosody | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prosody') 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); -- cgit v1.2.3