Skip to content
Snippets Groups Projects
Unverified Commit af9c9936 authored by Arya K's avatar Arya K Committed by GitHub
Browse files

Fix I2P HTTPS redirect (#18929)

parent 8479a4b0
No related branches found
No related tags found
No related merge requests found
......@@ -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') }
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment