mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.prosodyctl.check: Disable https cert check if http_external_url set
This would indicate that a reverse proxy is used, which gets to be responsible for that since it probably holds the actual cert.
This commit is contained in:
parent
8dcd20725a
commit
e06c97ca52
1 changed files with 4 additions and 0 deletions
|
@ -1189,6 +1189,10 @@ local function check(arg)
|
|||
or contains_match(modules, "_web$");
|
||||
|
||||
local http_host = api(host):get_option_string("http_host", host);
|
||||
if api(host):get_option_string("http_external_url") then
|
||||
-- Assumed behind a reverse proxy
|
||||
http_loaded = false;
|
||||
end
|
||||
if http_loaded and not x509_verify_identity(http_host, nil, cert) then
|
||||
print(" Not valid for HTTPS connections to "..host..".")
|
||||
cert_ok = false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue