Aha! In my global Nginx "security.conf" file (so out-side of the , I have the following setting ("add_header Referrer-Policy "no-referrer" always;"):
[....]
# Don't allow the browser to render the page inside an frame or iframe and avoid clickjacking
add_header X-Frame-Options "SAMEORIGIN" always;
# Enable the Cross-site scripting (XSS) filter built into most recent web browsers.
add_header X-XSS-Protection "1; mode=block" always;
# When serving user-supplied content, include a X-Content-Type-Options: nosniff header along with the Content-Type: header,
# to disable content-type sniffing on some browsers.
add_header X-Content-Type-Options "nosniff" always;
# Referrer Policy will allow a site to control the value of the referer header in links away from their pages.
add_header Referrer-Policy "no-referrer" always;
[....]
This is for security reasons, I think I should override the referrer-policy for review board. Review board is the only app/website that breaks on this setting. I host GitLab, Nextcloud and much more services without any issues with the above Nginx settings.
Should I set it to "strict-origin"?