How can I set a bucket in Amazon S3 so all the files are publicly read-only by default?
|
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.
|
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:
Important: replace bucket in the |
||||
|
|
|
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: |
|||
|
|
|
Here's another reference for setting up the policy: http://www.emind.co/make-s3-bucket-public/ |
|||||
|