diff --git a/onlineweb4/settings/storage.py b/onlineweb4/settings/storage.py index 0509a4e59..60eca0d4b 100644 --- a/onlineweb4/settings/storage.py +++ b/onlineweb4/settings/storage.py @@ -21,7 +21,6 @@ STATIC_LOCATION = "static" - STATIC_URL = f"https://{AWS_S3_CUSTOM_DOMAIN}/{STATIC_LOCATION}/" WIKI_ATTACHMENTS_LOCAL_PATH = False @@ -32,12 +31,12 @@ "BACKEND": "storages.backends.s3.S3Storage", "OPTIONS": { "location": MEDIA_LOCATION, - } + }, }, "staticfiles": { "BACKEND": "storages.backends.s3.S3Storage", "OPTIONS": { "location": STATIC_LOCATION, - } - } + }, + }, }