We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Cross-Origin-Opener-Policy
1 parent acaf4e0 commit 39e5c8cCopy full SHA for 39e5c8c
dockerfiles/nginx/proxito.conf.template
@@ -112,6 +112,11 @@ server {
112
add_header X-Frame-Options $x_frame_options always;
113
set $x_content_type_options $upstream_http_x_content_type_options;
114
add_header X-Content-Type-Options $x_content_type_options always;
115
+
116
+ # https://docs.djangoproject.com/en/4.2/ref/middleware/#cross-origin-opener-policy
117
+ set $cross_origin_opener_policy $upstream_http_cross_origin_opener_policy;
118
+ add_header Cross-Origin-Opener-Policy $cross_origin_opener_policy always;
119
120
# Minio sets this header on the response, and we don't want to copy it to the response
121
proxy_hide_header Content-Security-Policy;
122
set $content_security_policy $upstream_http_content_security_policy;
0 commit comments