Skip to content

Instantly share code, notes, and snippets.

@leecolarelli
Created January 18, 2024 11:31
Show Gist options
  • Select an option

  • Save leecolarelli/7490522e85001d1b024a1226d7ffd944 to your computer and use it in GitHub Desktop.

Select an option

Save leecolarelli/7490522e85001d1b024a1226d7ffd944 to your computer and use it in GitHub Desktop.
Laravel S3 Bucket CORS
[
{
"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