diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-01-10 09:18:05 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2023-01-10 09:39:15 +0100 |
commit | 9765d2b3f8192ff8a8c1bc90faf5f87331a26118 (patch) | |
tree | 1325b4c03508ebc650af429e23f873b2aa5decde /config/environments | |
parent | ad17e1944aa4c01c5637199b464c9d78b7e54af2 (diff) | |
parent | aefefc74c468ffd90e3ac97bfed5973717138759 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Conflicts: - `config/environments/production.rb`: Upstream changed headers, and we have different ones. Ported upstream's change.
Diffstat (limited to 'config/environments')
-rw-r--r-- | config/environments/production.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index 8e2f0cc7f..650dffa8b 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -133,13 +133,13 @@ Rails.application.configure do config.action_mailer.delivery_method = ENV.fetch('SMTP_DELIVERY_METHOD', 'smtp').to_sym config.action_dispatch.default_headers = { - 'Server' => 'Mastodon', - 'X-Frame-Options' => 'DENY', - 'X-Content-Type-Options' => 'nosniff', - 'X-XSS-Protection' => '0', - 'Permissions-Policy' => 'interest-cohort=()', - 'Referrer-Policy' => 'same-origin', - 'X-Clacks-Overhead' => 'GNU Natalie Nguyen' + 'Server' => 'Mastodon', + 'X-Frame-Options' => 'DENY', + 'X-Content-Type-Options' => 'nosniff', + 'X-XSS-Protection' => '0', + 'Permissions-Policy' => 'interest-cohort=()', + 'X-Clacks-Overhead' => 'GNU Natalie Nguyen', + 'Referrer-Policy' => 'no-referrer', } config.x.otp_secret = ENV.fetch('OTP_SECRET') |