Changeset

12268:d41e8c7890b0

mod_http: Use http_default_host for URLs generated in global context This might make the global routes less confusing sometimes, or at least valid URLs instead of http://*:5280/ which doesn't make much sense.
author Kim Alvefur <zash@zash.se>
date Fri, 04 Feb 2022 19:58:43 +0100
parents 12267:a52a0680fcd8
children 12269:a19d435dee90
files plugins/mod_http.lua
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_http.lua	Fri Feb 04 19:04:32 2022 +0100
+++ b/plugins/mod_http.lua	Fri Feb 04 19:58:43 2022 +0100
@@ -94,7 +94,8 @@
 		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);
 			}