diff options
author | Andrew Godwin | 2022-12-01 09:43:36 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-01 09:43:36 -0700 |
commit | 4344fdad9a16e1b8febf03479615a0f2d0fae07e (patch) | |
tree | ac298809afeb472478c163d48ada413aa9defc5a /takahe | |
parent | 676dda0cb666d4953de9a6e62dbb53ec93c759f3 (diff) | |
download | takahe-4344fdad9a16e1b8febf03479615a0f2d0fae07e.tar.gz takahe-4344fdad9a16e1b8febf03479615a0f2d0fae07e.tar.bz2 takahe-4344fdad9a16e1b8febf03479615a0f2d0fae07e.zip |
Update S3 to use world-readable files
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/settings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/takahe/settings.py b/takahe/settings.py index 2dc4ffa..288ecca 100644 --- a/takahe/settings.py +++ b/takahe/settings.py @@ -304,6 +304,8 @@ if SETUP.MEDIA_BACKEND: elif parsed.scheme == "s3": DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage" AWS_STORAGE_BUCKET_NAME = parsed.path.lstrip("/") + AWS_QUERYSTRING_AUTH = False + AWS_DEFAULT_ACL = "public-read" if parsed.username is not None: AWS_ACCESS_KEY_ID = parsed.username AWS_SECRET_ACCESS_KEY = urllib.parse.unquote(parsed.password) |