Last active
July 19, 2021 16:26
-
-
Save jawngee/6fc89497e10d0915ab2dfac807aa01e1 to your computer and use it in GitHub Desktop.
Sample Media Cloud S3 Bucket CORS Configuration
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
[ | |
{ | |
"AllowedHeaders": [ | |
"*" | |
], | |
"AllowedMethods": [ | |
"GET", | |
"PUT", | |
"POST", | |
"HEAD" | |
], | |
"AllowedOrigins": [ | |
"*" | |
], | |
"ExposeHeaders": [], | |
"MaxAgeSeconds": 3000 | |
} | |
] |
Updated
Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This no longer works: