mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_bosh: Add ::1 to the default trusted_proxies.
This commit is contained in:
parent
39bcea0025
commit
974866de52
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ local cross_domain = module:get_option("cross_domain_bosh", false);
|
|||
if cross_domain == true then cross_domain = "*"; end
|
||||
if type(cross_domain) == "table" then cross_domain = table.concat(cross_domain, ", "); end
|
||||
|
||||
local trusted_proxies = module:get_option_set("trusted_proxies", {"127.0.0.1"})._items;
|
||||
local trusted_proxies = module:get_option_set("trusted_proxies", { "127.0.0.1", "::1" })._items;
|
||||
|
||||
local function get_ip_from_request(request)
|
||||
local ip = request.conn:ip();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue