mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosody, prosodyctl: Fix traceback if ssl config is missing (thanks lookshe and sol)
This commit is contained in:
parent
7e28119b3d
commit
0147d39460
2 changed files with 2 additions and 2 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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue