Fix I2P HTTPS redirect (#18929)

lolsob-rspec
Arya K 2022-08-25 08:07:09 +05:30 committed by GitHub
parent ad216670b0
commit b2f2d2bfe3
1 changed files with 1 additions and 1 deletions

View File

@ -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') }
}
}