The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

12 行
274 B

  1. module Rack
  2. class Request
  3. def trusted_proxy?(ip)
  4. if Rails.application.config.action_dispatch.trusted_proxies.nil?
  5. super
  6. else
  7. Rails.application.config.action_dispatch.trusted_proxies.any? { |proxy| proxy === ip }
  8. end
  9. end
  10. end
  11. end