diff options
author | Kim Alvefur <zash@zash.se> | 2017-07-07 21:04:46 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-07-07 21:04:46 +0200 |
commit | 672ab9595bcadcefa5c8725fd0ba4d7d6089b4f5 (patch) | |
tree | f9ddd6059ceb8075d03c78e319434331bb25159b /net/http.lua | |
parent | 6f427fed5d39f772228c2c477f8fbb95587cdbcb (diff) | |
download | prosody-672ab9595bcadcefa5c8725fd0ba4d7d6089b4f5.tar.gz prosody-672ab9595bcadcefa5c8725fd0ba4d7d6089b4f5.zip |
net.http: Add option for disabling TLS certifictate validation
Diffstat (limited to 'net/http.lua')
-rw-r--r-- | net/http.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http.lua b/net/http.lua index eba050cd..8364a104 100644 --- a/net/http.lua +++ b/net/http.lua @@ -37,7 +37,7 @@ function listener.onconnect(conn) local req = requests[conn]; -- Validate certificate - if conn:ssl() then + if not req.insecure and conn:ssl() then local sock = conn:socket(); local chain_valid = sock.getpeerverification and sock:getpeerverification(); if not chain_valid then @@ -202,6 +202,7 @@ local function request(self, u, ex, callback) headers[k] = v; end end + req.insecure = ex.insecure; end log("debug", "Making %s %s request '%s' to %s", req.scheme:upper(), method or "GET", req.id, (ex and ex.suppress_url and host_header) or u); |