diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-07-16 19:25:15 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-07-16 19:25:15 +0100 |
commit | 974866de52bda62de95d06f64169286c8df5b66a (patch) | |
tree | 00a2e70eb9f6826b168a53580b7829ccc97dec1e /plugins/mod_bosh.lua | |
parent | 39bcea0025949af9de9555dee3c2c3f9a5cb7249 (diff) | |
download | prosody-974866de52bda62de95d06f64169286c8df5b66a.tar.gz prosody-974866de52bda62de95d06f64169286c8df5b66a.zip |
mod_bosh: Add ::1 to the default trusted_proxies.
Diffstat (limited to 'plugins/mod_bosh.lua')
-rw-r--r-- | plugins/mod_bosh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 5ef0dfb6..9ef4a41e 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -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(); |