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 | 24e2e04d48d106aa68d3be26f37d36e56cc52fe0 (patch) | |
tree | e5694415c5775c3429c316f3b49f72ad7426edc6 /prosody | |
parent | eb481bfb43e58d6f6c1bd18f0761c077fa0263a4 (diff) | |
download | prosody-24e2e04d48d106aa68d3be26f37d36e56cc52fe0.tar.gz prosody-24e2e04d48d106aa68d3be26f37d36e56cc52fe0.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" |