mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http: Return a static string from module:http_url() when no ports are enabled and log a warning
This commit is contained in:
parent
3550cf7e8e
commit
5efd433b8a
1 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,8 @@ function moduleapi.http_url(module, app_name, default_path)
|
|||
return url_build(url);
|
||||
end
|
||||
end
|
||||
module:log("warn", "No http ports enabled, can't generate an external URL");
|
||||
return "http://disabled.invalid/";
|
||||
end
|
||||
|
||||
function module.add_host(module)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue