Software /
code /
prosody
Comparison
plugins/mod_http.lua @ 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 |
parent | 12192:6a772a0c0dfd |
child | 12269:a19d435dee90 |
comparison
equal
deleted
inserted
replaced
12267:a52a0680fcd8 | 12268:d41e8c7890b0 |
---|---|
92 local http_services = services:get("https") or services:get("http") or {}; | 92 local http_services = services:get("https") or services:get("http") or {}; |
93 for interface, ports in pairs(http_services) do -- luacheck: ignore 213/interface | 93 for interface, ports in pairs(http_services) do -- luacheck: ignore 213/interface |
94 for port, service in pairs(ports) do -- luacheck: ignore 512 | 94 for port, service in pairs(ports) do -- luacheck: ignore 512 |
95 local url = { | 95 local url = { |
96 scheme = service[1].service.name; | 96 scheme = service[1].service.name; |
97 host = module:get_option_string("http_host", module.host); | 97 host = module:get_option_string("http_host", module.global |
98 and module:get_option_string("http_default_host") or module.host); | |
98 port = port; | 99 port = port; |
99 path = get_base_path(module, app_name, default_path or "/" .. app_name); | 100 path = get_base_path(module, app_name, default_path or "/" .. app_name); |
100 } | 101 } |
101 if ports_by_scheme[url.scheme] == url.port then url.port = nil end | 102 if ports_by_scheme[url.scheme] == url.port then url.port = nil end |
102 return url_build(url); | 103 return url_build(url); |