Skip to content

Commit

Permalink
Fix missing ; in CORS config
Browse files Browse the repository at this point in the history
  • Loading branch information
Shrinks99 authored Oct 13, 2023
2 parents adeefc6 + ba70857 commit db129d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/cors-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' 'https://replayweb.page';
add_header 'Access-Control-Allow-Methods' 'GET, HEAD, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' '*'
add_header 'Access-Control-Allow-Headers' '*' ;
return 204;
}
Expand Down

0 comments on commit db129d4

Please sign in to comment.