mod_bosh: Add ::1 to the default trusted_proxies.

This commit is contained in:
Emmanuel Gil Peyrot 2017-07-16 19:25:15 +01:00
parent 39bcea0025
commit 974866de52

View file

@ -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();