Browse Source

Allow to specify trusted proxies through env

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
67befe5463
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      config/environments/production.rb

+ 3
- 0
config/environments/production.rb View File

@ -32,6 +32,9 @@ Rails.application.configure do
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
# Allow to specify public IP of reverse proxy if it's needed
config.action_dispatch.trusted_proxies = [IPAddr.new(ENV['TRUSTED_PROXY_IP'])] unless ENV['TRUSTED_PROXY_IP'].blank?
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
config.force_ssl = false

Loading…
Cancel
Save