diff options
Diffstat (limited to 'config/environments')
-rw-r--r-- | config/environments/production.rb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index 70baa6ad1..7a07a8eb0 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -95,10 +95,14 @@ 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' => '1; mode=block', + 'Server' => 'Mastodon', + 'X-Frame-Options' => 'DENY', + 'X-Content-Type-Options' => 'nosniff', + 'X-XSS-Protection' => '1; mode=block', + 'Referrer-Policy' => 'same-origin', + 'Strict-Transport-Security' => 'max-age=63072000; includeSubDomains; preload', + 'X-Clacks-Overhead' => 'GNU Natalie Nguyen' + } config.x.otp_secret = ENV.fetch('OTP_SECRET') |