mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-17 03:25:19 +00:00
Merge pull request #3067 from hughrun/2989
add defaults of None to optional AWS values
This commit is contained in:
commit
45fc10e3bf
1 changed files with 2 additions and 2 deletions
|
@ -366,9 +366,9 @@ if USE_S3:
|
||||||
AWS_ACCESS_KEY_ID = env("AWS_ACCESS_KEY_ID")
|
AWS_ACCESS_KEY_ID = env("AWS_ACCESS_KEY_ID")
|
||||||
AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY")
|
AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY")
|
||||||
AWS_STORAGE_BUCKET_NAME = env("AWS_STORAGE_BUCKET_NAME")
|
AWS_STORAGE_BUCKET_NAME = env("AWS_STORAGE_BUCKET_NAME")
|
||||||
AWS_S3_CUSTOM_DOMAIN = env("AWS_S3_CUSTOM_DOMAIN")
|
AWS_S3_CUSTOM_DOMAIN = env("AWS_S3_CUSTOM_DOMAIN", None)
|
||||||
AWS_S3_REGION_NAME = env("AWS_S3_REGION_NAME", "")
|
AWS_S3_REGION_NAME = env("AWS_S3_REGION_NAME", "")
|
||||||
AWS_S3_ENDPOINT_URL = env("AWS_S3_ENDPOINT_URL")
|
AWS_S3_ENDPOINT_URL = env("AWS_S3_ENDPOINT_URL", None)
|
||||||
AWS_DEFAULT_ACL = "public-read"
|
AWS_DEFAULT_ACL = "public-read"
|
||||||
AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"}
|
AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"}
|
||||||
# S3 Static settings
|
# S3 Static settings
|
||||||
|
|
Loading…
Reference in a new issue