Skip to content

Instantly share code, notes, and snippets.

@philfreo
Last active October 23, 2019 02:39
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save philfreo/4695840 to your computer and use it in GitHub Desktop.
Save philfreo/4695840 to your computer and use it in GitHub Desktop.
AWS S3 CORS policy examples
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Authorization</AllowedHeader>
<AllowedHeader>Content-*</AllowedHeader>
<AllowedHeader>Host</AllowedHeader>
</CORSRule>
</CORSConfiguration>
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>https://app.close.io</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>HEAD</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Authorization</AllowedHeader>
<AllowedHeader>Content-*</AllowedHeader>
<AllowedHeader>Host</AllowedHeader>
</CORSRule>
</CORSConfiguration>
@gbutiri
Copy link

gbutiri commented Nov 14, 2018

This helps a ton. Thank you!

@ehansen31
Copy link

appreciate the copy and paste, wasn't in the aws documentation. cheers

@psobocinski
Copy link

I had to add, x-amz-* for it to work with the JavaScript SDK in the browser (i.e. https://sdk.amazonaws.com/js/aws-sdk-2.441.0.min.js).

@neilmenon
Copy link

Thanks, was also looking for a simple copy-paste solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment