Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trandaison/e7464e54fcb2aeb7873782316c6650b7 to your computer and use it in GitHub Desktop.
Save trandaison/e7464e54fcb2aeb7873782316c6650b7 to your computer and use it in GitHub Desktop.
A Nginx conf for handling OPTIONS request for functions like window.fetch
server {
# ...
# handle OPTIONS requests from window.fetch
if ($request_method = OPTIONS ) {
add_header Access-Control-Allow-Origin "*";
add_header Access-Control-Allow-Methods "GET, OPTIONS";
add_header Access-Control-Allow-Headers "Authorization,content-type";
add_header Access-Control-Allow-Credentials "true";
add_header Content-Length 0;
add_header Content-Type text/plain;
return 200;
}
# ...
}
@samirmhsnv
Copy link

This will not work. Because IF is evil and it only allowed inside of location

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment