This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-01-22 21:01:28 +01:00
|
|
|
module Rack
|
|
|
|
class Request
|
|
|
|
def trusted_proxy?(ip)
|
2017-01-22 23:07:31 +01:00
|
|
|
if Rails.application.config.action_dispatch.trusted_proxies.nil?
|
|
|
|
super
|
|
|
|
else
|
|
|
|
Rails.application.config.action_dispatch.trusted_proxies.any? { |proxy| proxy === ip }
|
|
|
|
end
|
2017-01-22 21:01:28 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|