Skip to content

Instantly share code, notes, and snippets.

@coderdipto
Created June 11, 2020 13:12
Show Gist options
  • Save coderdipto/ca113c0ff55c2675cd3e76b7fede4585 to your computer and use it in GitHub Desktop.
Save coderdipto/ca113c0ff55c2675cd3e76b7fede4585 to your computer and use it in GitHub Desktop.
s3 bucket permission cors 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>POST</AllowedMethod>
<AllowedMethod>PUT</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment