Skip to content

Instantly share code, notes, and snippets.

@elcuervo
Created August 10, 2012 19:33
Show Gist options
  • Save elcuervo/3317243 to your computer and use it in GitHub Desktop.
Save elcuervo/3317243 to your computer and use it in GitHub Desktop.
Nginx CORS config
location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'POST, OPTIONS';
add_header 'Access-Control-Max-Age' '1728000';
add_header 'Content-Type' 'text/plain; charset=UTF-8';
return 200;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment