mod_http: Return a static string from module:http_url() when no ports are enabled and log a warning

This commit is contained in:
Kim Alvefur 2015-03-23 18:45:02 +01:00
parent 3550cf7e8e
commit 5efd433b8a

View file

@ -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)