Created
January 18, 2024 11:31
-
-
Save leecolarelli/7490522e85001d1b024a1226d7ffd944 to your computer and use it in GitHub Desktop.
Laravel S3 Bucket CORS
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": [ | |
| "HEAD", | |
| "GET", | |
| "PUT", | |
| "POST", | |
| "DELETE" | |
| ], | |
| "AllowedOrigins": [ | |
| "https://example-site.com", | |
| "http://localhost:8000", | |
| "https://staging-site.com", | |
| "Vary: Origin" | |
| ] | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment