From: Arya K <73596856+gi-yt@users.noreply.github.com> Date: Thu, 25 Aug 2022 02:37:09 +0000 (+0530) Subject: Fix I2P HTTPS redirect (#18929) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=86294e39b3cd372020b722f3bcbd1ba0bc5c139b;p=mastodon.git Fix I2P HTTPS redirect (#18929) --- diff --git a/config/environments/production.rb b/config/environments/production.rb index 69f80667e..dd73bb4e1 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') } } }