Created
February 8, 2017 21:19
-
-
Save arifwn/22057dac2612f9ab9a7a68d5cd3707b5 to your computer and use it in GitHub Desktop.
Handle CORS OPTIONS in Nginx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# inside location block | |
if ($request_method = OPTIONS ) { | |
add_header Access-Control-Allow-Origin "$http_origin"; | |
add_header Access-Control-Allow-Methods "GET, OPTIONS"; | |
add_header Access-Control-Allow-Headers "Authorization"; | |
add_header Access-Control-Allow-Credentials "true"; | |
add_header Content-Length 0; | |
add_header Content-Type text/plain; | |
return 200; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment