Skip to content

Instantly share code, notes, and snippets.

@yograterol
Created August 12, 2014 16:01
Show Gist options
  • Save yograterol/6cce2edcd8c49743286c to your computer and use it in GitHub Desktop.
Save yograterol/6cce2edcd8c49743286c to your computer and use it in GitHub Desktop.
[AWS] CORS AWS S3
<?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>Content-*</AllowedHeader>
<AllowedHeader>Host</AllowedHeader>
</CORSRule>
</CORSConfiguration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment