Yeah. Stupid. I was not searching at the right place.
I found many entries of Referrer-Policy' => 'strict-origin-when-cross-origin'
Here is a list (grep strict-origin-when-cross-origin /var/www/discourse/ -R):
/var/www/discourse/vendor/bundle/ruby/2.7.0/gems/rack-protection-2.2.2/lib/rack/protection/referrer_policy.rb: # referrer_policy:: The policy to use (default: ‘strict-origin-when-cross-origin’)
/var/www/discourse/vendor/bundle/ruby/2.7.0/gems/rack-protection-3.0.2/lib/rack/protection/referrer_policy.rb: # referrer_policy:: The policy to use (default: ‘strict-origin-when-cross-origin’)
조금 덜 난감한 해킹 방법은 커스텀 테마 컴포넌트의 HTML head 부분에 다음을 넣는 것입니다:
<meta name="referrer" content="same-origin">
이 방법은 HTTP 헤더를 제거하지는 않지만, HTTP 헤더가 HTML 메타 태그를 덮어쓰는지, 아니면 그 반대의 경우인지는 확실한 정보를 찾지 못했습니다. 하지만 whatsmyreferer.com으로 간단히 테스트해 본 결과, 잘 작동하는 것 같습니다: 나가는 링크에 더 이상 referrer 헤더가 전송되지 않습니다.