mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
77630b72ff
commit
a798505a97
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue