mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
2
prosody
2
prosody
|
@ -324,7 +324,7 @@ function load_secondary_libraries()
|
||||||
end});
|
end});
|
||||||
|
|
||||||
local http = require "net.http"
|
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")
|
local https_client = config.get("*", "client_https_ssl")
|
||||||
http.default.options.sslctx = require "core.certmanager".create_context("client_https port 0", "client",
|
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);
|
{ 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 socket = require "socket"
|
||||||
|
|
||||||
local http = require "net.http"
|
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")
|
local https_client = config.get("*", "client_https_ssl")
|
||||||
http.default.options.sslctx = require "core.certmanager".create_context("client_https port 0", "client",
|
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);
|
{ capath = config_ssl.capath, cafile = config_ssl.cafile, verify = "peer", }, https_client);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue