diff options
author | Kim Alvefur <zash@zash.se> | 2017-07-07 20:42:35 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-07-07 20:42:35 +0200 |
commit | cb0a2ffe81725c4457a999af5c03b91493629df5 (patch) | |
tree | e5694415c5775c3429c316f3b49f72ad7426edc6 /prosody | |
parent | 708ce26bc81ce86b5f0a23f4beb3119210ab6d8f (diff) | |
download | prosody-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-x | prosody | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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" |