Created
January 29, 2019 04:40
-
-
Save diendv96/76973bf0b5cdd2effab7f26f279f78be to your computer and use it in GitHub Desktop.
NGINX CORS enable for Magento
This file contains 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
... | |
add_header 'Access-Control-Allow-Origin' '$http_origin'; | |
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE, HEAD'; | |
add_header 'Access-Control-Allow-Credentials' 'true'; | |
add_header 'Access-Control-Allow-Headers' 'Origin,Content-Type,Accept,Authorization'; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
if ($request_method = 'OPTIONS') { | |
add_header 'Access-Control-Allow-Origin' '$http_origin'; | |
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE, HEAD'; | |
add_header 'Access-Control-Max-Age' '1728000'; | |
add_header 'Access-Control-Allow-Credentials' 'true'; | |
add_header 'Access-Control-Allow-Headers' 'Origin,Content-Type,Accept,Authorization'; | |
add_header 'Content-Type' 'text/plain; charset=UTF-8'; | |
add_header 'Content-Length' '0'; | |
return 204; | |
} | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment