0
0
Fork 0

Use a system setting for the Referer policy (#33239)

This commit is contained in:
Renaud Chaput 2024-12-10 14:16:52 +01:00 committed by GitHub
parent 7d52b24569
commit 2a369a8977
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 1 deletions

View file

@ -153,7 +153,7 @@ Rails.application.configure do
'X-Frame-Options' => 'DENY',
'X-Content-Type-Options' => 'nosniff',
'X-XSS-Protection' => '0',
'Referrer-Policy' => ENV['ALLOW_REFERRER_ORIGIN'] == 'true' ? 'origin' : 'same-origin',
'Referrer-Policy' => 'same-origin',
}
# TODO: Remove once devise-two-factor data migration complete