8 lines
211 B
Python
8 lines
211 B
Python
![]() |
from django.conf import settings
|
||
|
from storages.backends.s3boto3 import S3Boto3Storage
|
||
|
|
||
|
|
||
|
class PublicMediaStorage(S3Boto3Storage):
|
||
|
location = 'media'
|
||
|
default_acl = 'public-read'
|
||
|
file_overwrite = False
|