mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http: Silence warnings when running under prosodyctl
This commit is contained in:
parent
686adb2d71
commit
29f2e5906f
1 changed files with 4 additions and 2 deletions
|
@ -93,7 +93,9 @@ function moduleapi.http_url(module, app_name, default_path)
|
||||||
return url_build(url);
|
return url_build(url);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
module:log("warn", "No http ports enabled, can't generate an external URL");
|
if prosody.process_type == "prosody" then
|
||||||
|
module:log("warn", "No http ports enabled, can't generate an external URL");
|
||||||
|
end
|
||||||
return "http://disabled.invalid/";
|
return "http://disabled.invalid/";
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -190,7 +192,7 @@ function module.add_host(module)
|
||||||
local services = portmanager.get_active_services();
|
local services = portmanager.get_active_services();
|
||||||
if services:get("https") or services:get("http") then
|
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));
|
module:log("info", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path));
|
||||||
else
|
elseif prosody.process_type == "prosody" then
|
||||||
module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name);
|
module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue