Skip to content

Instantly share code, notes, and snippets.

@robraux
Created September 17, 2013 14:11
Show Gist options
  • Save robraux/6594832 to your computer and use it in GitHub Desktop.
Save robraux/6594832 to your computer and use it in GitHub Desktop.
All open CORS S3
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>PUT</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