
Hint to browsers that we prefer per-origin process isolation. This disables certain unsafe features regarding cross-origin same-site resource sharing. https://web.dev/origin-agent-cluster/#limitations Specification link: https://html.spec.whatwg.org/multipage/origin.html#origin-keyed-agent-clusters This is just a hint to browsers. Depending on resource availability, they may or may not actually allocate a process. For this reason, it's not a robust security feature although it is preferable. This header needs to be active on all pages from an origin for it to work.
16 lines
693 B
Plaintext
16 lines
693 B
Plaintext
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always;
|
|
add_header X-Content-Type-Options "nosniff" always;
|
|
add_header Referrer-Policy "no-referrer" always;
|
|
add_header Cross-Origin-Opener-Policy "same-origin" always;
|
|
add_header Cross-Origin-Embedder-Policy "require-corp" always;
|
|
add_header Origin-Agent-Cluster "?1" always;
|
|
|
|
# obsolete when client system time is correct
|
|
add_header Expect-CT "enforce, max-age=63072000" always;
|
|
|
|
# obsolete and replaced with Content-Security-Policy frame-ancestors 'none'
|
|
add_header X-Frame-Options "DENY" always;
|
|
|
|
# obsolete, unsafe and replaced with strong Content-Security-Policy
|
|
add_header X-XSS-Protection "0" always;
|