From 82215560891bd593fb4bdff7e77614cbb4ff4c6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Losada?= Date: Fri, 22 Jul 2016 23:22:18 +0200 Subject: [PATCH] Add documentation on Amazon S3 ACLs --- docs/topics/media-pipeline.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/topics/media-pipeline.rst b/docs/topics/media-pipeline.rst index 7f0cb1ba6..f13a72a0b 100644 --- a/docs/topics/media-pipeline.rst +++ b/docs/topics/media-pipeline.rst @@ -162,7 +162,14 @@ For example, this is a valid :setting:`IMAGES_STORE` value:: You can modify the Access Control List (ACL) policy used for the stored files, which is defined by the :setting:`FILES_STORE_S3_ACL` and :setting:`IMAGES_STORE_S3_ACL` settings. By default, the ACL is set to -``private``. +``private``. To make the files publicly available use the ``public-read`` +policy:: + + IMAGES_STORE_S3_ACL = 'public-read' + +For more information, see `canned ACLs`_ in the Amazon S3 Developer Guide. + +.. _canned ACLs: http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl Usage example =============