mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http: Log a debug message when adding new http apps and warn if no http ports are enabled
This commit is contained in:
parent
272f0cf5e5
commit
3550cf7e8e
1 changed files with 6 additions and 0 deletions
|
@ -110,6 +110,12 @@ function module.add_host(module)
|
|||
module:log("error", "Invalid route in %s, %q. See http://prosody.im/doc/developers/http#routes", app_name, key);
|
||||
end
|
||||
end
|
||||
local services = portmanager.get_active_services();
|
||||
if services:get("https") or services:get("http") then
|
||||
module:log("debug", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path));
|
||||
else
|
||||
module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name);
|
||||
end
|
||||
end
|
||||
|
||||
local function http_app_removed(event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue