Skip to content

Commit

Permalink
Merge pull request #33 from lizkrznarich/fix-http-response-headers-co…
Browse files Browse the repository at this point in the history
…nfig

fix nginx add_header formatting
  • Loading branch information
richardhallett authored Dec 3, 2021
2 parents 547b135 + 214c938 commit 7af088c
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 7af088c

Please sign in to comment.