2023-07-12 16:47:08 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-23 05:01:28 +09:00
|
|
|
module Rack
|
|
|
|
class Request
|
|
|
|
def trusted_proxy?(ip)
|
2017-01-23 07:07:31 +09: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-23 05:01:28 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|