Skip to content

Instantly share code, notes, and snippets.

@lastday154
Created April 18, 2018 02:42
Show Gist options
  • Select an option

  • Save lastday154/4067e3d39b497f4ef80dc94f3cdbebfc to your computer and use it in GitHub Desktop.

Select an option

Save lastday154/4067e3d39b497f4ef80dc94f3cdbebfc to your computer and use it in GitHub Desktop.
s3 configuration
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://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