Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mberman84/9fa0cb3b1b3c06ba22c4e8e5a0e7d194 to your computer and use it in GitHub Desktop.
Save mberman84/9fa0cb3b1b3c06ba22c4e8e5a0e7d194 to your computer and use it in GitHub Desktop.
CORS Settings AWS
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"GET",
"PUT",
"POST",
"DELETE"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": [
"Access-Control-Allow-Origin"
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment