mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
util.startup: Enable DANE in http client library with use_dane
This commit is contained in:
parent
4441528b1f
commit
69a9195243
1 changed files with 1 additions and 0 deletions
|
@ -393,6 +393,7 @@ function startup.init_http_client()
|
||||||
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);
|
||||||
|
http.default.options.use_dane = config.get("*", "use_dane")
|
||||||
end
|
end
|
||||||
|
|
||||||
function startup.init_promise()
|
function startup.init_promise()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue