mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
11 lines
254 B
Python
11 lines
254 B
Python
from django.conf import settings
|
|
|
|
from storages.backends.s3boto3 import S3Boto3Storage
|
|
|
|
|
|
class MediaStorage(S3Boto3Storage):
|
|
bucket_name = settings.MEDIA_BUCKET_NAME
|
|
default_acl = "public-read"
|
|
file_overwrite = True
|
|
custom_domain = False
|