Fix I2P HTTPS redirect (#18929)

local
Arya K 2 years ago committed by GitHub
parent 8479a4b0c1
commit af9c9936dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      config/environments/production.rb

@ -47,7 +47,7 @@ Rails.application.configure do
config.force_ssl = true
config.ssl_options = {
redirect: {
exclude: -> request { request.path.start_with?('/health') || request.headers["Host"].end_with?('.onion') }
exclude: -> request { request.path.start_with?('/health') || request.headers["Host"].end_with?('.onion') || request.headers["Host"].end_with?('.i2p') }
}
}

Loading…
Cancel
Save