mod_http: Increase severity of loading unreachable http modules

This is either caused by an earlier failure to bind http/s ports, in
which case that should be corrected, or explicitly disbling the http/s
ports, in which case ... why enable http modules?

Suggested by jonas’
This commit is contained in:
Kim Alvefur 2022-01-15 17:37:07 +01:00
parent 77630b72ff
commit a798505a97

View file

@ -226,7 +226,7 @@ function module.add_host(module)
if services:get("https") or services:get("http") then
module:log("info", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path));
elseif prosody.process_type == "prosody" then
module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name);
module:log("error", "Not listening on any ports, '%s' will be unreachable", app_name);
end
end