Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I set a bucket in Amazon S3 so all the files are publicly read-only by default?

share|improve this question
2  
Please, consider changing the accepted answer. – Victor Farazdagi Jan 22 '12 at 11:53
@Stu Thompson: I'm confused. the accepted answer seems to be working just fine. Could you please tell which answer you think is acceptable? – Viru Jun 30 '12 at 23:03
@VirenShakya: the user changed their answer, to me relief. Deleting my comment now. – Stu Thompson Jul 20 '12 at 21:34

closed as off topic by some, S.L. Barth, Ananda Mahto, Toon Krijthe, oers Oct 7 '12 at 8:15

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 64 down vote accepted

You can set a bucket policy as detailed in this blog post:

http://ariejan.net/2010/12/24/public-readable-amazon-s3-bucket-policy/


As per @robbyt's suggestion, create a bucket policy with the following JSON:

{
  "Version": "2008-10-17",
  "Statement": [{
    "Sid": "AllowPublicRead",
    "Effect": "Allow",
    "Principal": { "AWS": "*" },
    "Action": ["s3:GetObject"],
    "Resource": ["arn:aws:s3:::bucket/*" ]
  }]
}

Important: replace bucket in the Resource line with the name of your bucket.

share|improve this answer

Amazon provide a policy generator tool:

http://awspolicygen.s3.amazonaws.com/policygen.html

You can enter the policy for the bucket in the properties for the bucket on the AWS console:

https://console.aws.amazon.com/s3/home

share|improve this answer

Here's another reference for setting up the policy: http://www.emind.co/make-s3-bucket-public/

share|improve this answer
3  
Please post the actual answer here, don't post the answer on your website/blog and then just post a link to it. – ho1 May 10 '12 at 9:59

Not the answer you're looking for? Browse other questions tagged or ask your own question.