Skip to content

Commit

Permalink
fix nginx add_header formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lizkrznarich committed Dec 2, 2021
1 parent 547b135 commit 214c938
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vendor/docker/webapp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ server {
merge_slashes off;

location / {
add_header 'Access-Control-Allow-Origin: *' always;
add_header 'Access-Control-Allow-Headers: Content-Type,Accept,Accept-Encoding,Origin,User-Agent,Cache-Control,Keep-Alive' always;
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Headers' 'Content-Type,Accept,Accept-Encoding,Origin,User-Agent,Cache-Control,Keep-Alive' always;
}
}

0 comments on commit 214c938

Please sign in to comment.