aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/mod_http.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua
index ef951450..9144ff49 100644
--- a/plugins/mod_http.lua
+++ b/plugins/mod_http.lua
@@ -94,7 +94,8 @@ function moduleapi.http_url(module, app_name, default_path)
for port, service in pairs(ports) do -- luacheck: ignore 512
local url = {
scheme = service[1].service.name;
- host = module:get_option_string("http_host", module.host);
+ host = module:get_option_string("http_host", module.global
+ and module:get_option_string("http_default_host") or module.host);
port = port;
path = get_base_path(module, app_name, default_path or "/" .. app_name);
}