2
2
mirror of https://github.com/mastodon/mastodon synced 2025-04-12 00:56:38 +02:00

Override Rack::Request to use the same trusted proxy settings as Rails

This commit is contained in:
Eugen Rochko 2017-01-22 21:01:28 +01:00
parent 67befe5463
commit 61aee0006e

View File

@ -0,0 +1,7 @@
module Rack
class Request
def trusted_proxy?(ip)
Rails.application.config.action_dispatch.trusted_proxies.any? { |proxy| proxy === ip }
end
end
end