Created
April 23, 2017 22:17
-
-
Save aubricus/9694fdee40f501632027abbaffce9e4f to your computer and use it in GitHub Desktop.
Example Heroku compatible S3 CORS.json config
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
{ | |
"CORSRules": [ | |
{ | |
"AllowedOrigins": ["*.herokuapp.com"], | |
"AllowedHeaders": ["Authorization"], | |
"AllowedMethods": ["GET"], | |
"MaxAgeSeconds": 3000 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment