mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_websocket: Log an error if cross_domain_websocket = true is set in a VirtualHost section
This commit is contained in:
parent
757051d913
commit
f8d61d21e5
1 changed files with 5 additions and 0 deletions
|
@ -338,6 +338,11 @@ function module.add_host(module)
|
|||
url_components.path = nil;
|
||||
local this_origin = url.build(url_components);
|
||||
local local_cross_domain = module:get_option_set("cross_domain_websocket", { this_origin });
|
||||
if local_cross_domain:contains(true) then
|
||||
module:log("error", "cross_domain_websocket = true only works in the global section");
|
||||
return;
|
||||
end
|
||||
|
||||
-- Don't add / remove something added by another host
|
||||
-- This might be weird with random load order
|
||||
local_cross_domain:exclude(cross_domain);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue