Last active
March 11, 2022 16:20
-
-
Save whobutsb/e46b1d3a90b3d967dc92ff8c97d7f11e to your computer and use it in GitHub Desktop.
S3-bucket-cors-policy
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
[ | |
{ | |
"AllowedHeaders": [ | |
"*" | |
], | |
"AllowedMethods": [ | |
"PUT", | |
"POST", | |
"GET", | |
"HEAD", | |
"DELETE" | |
], | |
"AllowedOrigins": [ | |
"cdn.example.com", | |
"example.com", | |
"https://cdn.example.com", | |
"https://example.com" | |
] | |
"ExposeHeaders": [ | |
"ETag" | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment