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:
Kim Alvefur 2023-11-13 09:58:56 +01:00
parent 8dcd20725a
commit e06c97ca52

View file

@ -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