Merge pull request 'Added 'always' directive as default to the 'Access-Control-Allow-Origin', see #28488#note-24' (!3) from new_cors_configs into master

Reviewed-on: #3
This commit is contained in:
Andrea Dell'Amico 2024-12-18 12:27:04 +01:00
commit 4b04781a9d
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ proxy_hide_header Access-Control-Allow-Origin;
add_header 'Access-Control-Allow-Origin' '{{ nginx_cors_acl_origin | default("$http_origin") }}';
{% else %}
proxy_hide_header Access-Control-Allow-Origin;
add_header 'Access-Control-Allow-Origin' '{{ nginx_access_control_allow_origin_src | default("*") }}';
add_header 'Access-Control-Allow-Origin' '{{ nginx_access_control_allow_origin_src | default("*") }}' always;
{% endif %}
if ($request_method = OPTIONS ) {
return 204;