Skip to content

Instantly share code, notes, and snippets.

@fanatique
Created July 24, 2015 10:59
Show Gist options
  • Save fanatique/137de41568e70d667ec2 to your computer and use it in GitHub Desktop.
Save fanatique/137de41568e70d667ec2 to your computer and use it in GitHub Desktop.
Amazon S3 Bucket Policy for Webhosting
{
"Version":"2012-10-17",
"Statement":[{
"Sid":"PublicReadGetObject",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::YOUR-BUCKET-NAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment