mod_websocket: Only enable host-agnostic HTTP routing when enabled globally

This way the host-agnostic http://*:5280/ handler is not enabled, but
BOSH can still be used with any local VirtualHost

Ref #1712
This commit is contained in:
Kim Alvefur 2022-02-04 17:59:42 +01:00
parent 89ace39a31
commit e2f8d0b70f

View file

@ -364,4 +364,6 @@ function module.add_host(module)
module:hook("c2s-read-timeout", keepalive, -0.9);
end
module:add_host();
if require"core.modulemanager".get_modules_for_host("*"):contains(module.name) then
module:add_host();
end