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 /prosodyctl | |
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 'prosodyctl')
-rwxr-xr-x | prosodyctl | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -251,6 +251,13 @@ local modulemanager = require "core.modulemanager" local prosodyctl = require "util.prosodyctl" local socket = require "socket" + +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); + ----------------------- -- FIXME: Duplicate code waiting for util.startup |