about summary refs log tree commit diff
path: root/config/environments
diff options
context:
space:
mode:
authorArya K <73596856+gi-yt@users.noreply.github.com>2022-08-25 08:07:09 +0530
committerGitHub <noreply@github.com>2022-08-25 04:37:09 +0200
commitaf9c9936dd8c87746c9afa128483a93ad21a8b7e (patch)
tree7e2ee3bf250033df3f07a74b461825ec4aa97b2f /config/environments
parent8479a4b0c1079fc354164842c439f2f87e9eab92 (diff)
Fix I2P HTTPS redirect (#18929)
Diffstat (limited to 'config/environments')
-rw-r--r--config/environments/production.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 514c08cff..f41a0f197 100644
--- a/config/environments/production.rb
+++ b/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') }
     }
   }