mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
4e7a2d21e8
2 changed files with 2 additions and 2 deletions
2
prosody
2
prosody
|
@ -322,7 +322,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);
|
||||
|
|
|
@ -251,7 +251,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