aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-03-23 18:44:12 +0100
committerKim Alvefur <zash@zash.se>2015-03-23 18:44:12 +0100
commit3550cf7e8e56e8d331596916006cdb8e57221e1c (patch)
tree7429f434c89515e066d6e620518377b96da80c7e /plugins/mod_http.lua
parent272f0cf5e541c228f61bfef63d327722b9c6e482 (diff)
downloadprosody-3550cf7e8e56e8d331596916006cdb8e57221e1c.tar.gz
prosody-3550cf7e8e56e8d331596916006cdb8e57221e1c.zip
mod_http: Log a debug message when adding new http apps and warn if no http ports are enabled
Diffstat (limited to 'plugins/mod_http.lua')
-rw-r--r--plugins/mod_http.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua
index 86689aff..9ff3af74 100644
--- a/plugins/mod_http.lua
+++ b/plugins/mod_http.lua
@@ -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)