Skip to content

Instantly share code, notes, and snippets.

@jetstreamin
Last active February 16, 2019 22:24
Show Gist options
  • Save jetstreamin/c285017e5967888b7fadfa208a403b04 to your computer and use it in GitHub Desktop.
Save jetstreamin/c285017e5967888b7fadfa208a403b04 to your computer and use it in GitHub Desktop.
Better CORS for S3 Buckets
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="https://s3.amazonaws.com/doc/2006-03-01">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>DELETE</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment