aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-07-07 20:42:35 +0200
committerKim Alvefur <zash@zash.se>2017-07-07 20:42:35 +0200
commitcb0a2ffe81725c4457a999af5c03b91493629df5 (patch)
treee5694415c5775c3429c316f3b49f72ad7426edc6 /prosody
parent708ce26bc81ce86b5f0a23f4beb3119210ab6d8f (diff)
downloadprosody-cb0a2ffe81725c4457a999af5c03b91493629df5.tar.gz
prosody-cb0a2ffe81725c4457a999af5c03b91493629df5.zip
prosody, prosodyctl: Set up TLS settings for HTTPS requests in net.http (part of fix for #659)
Diffstat (limited to 'prosody')
-rwxr-xr-xprosody6
1 files changed, 5 insertions, 1 deletions
diff --git a/prosody b/prosody
index 0a48eba4..7d9e76b8 100755
--- a/prosody
+++ b/prosody
@@ -323,7 +323,11 @@ function load_secondary_libraries()
return function() end
end});
- require "net.http"
+ local http = require "net.http"
+ local config_ssl = config.get("*", "ssl")
+ 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);
require "util.array"
require "util.datetime"