5👍
✅
Solved with these settings:
AWS_ACCESS_KEY_ID = '<KEY_ID>'
AWS_SECRET_ACCESS_KEY = '<SECRET_KEY>'
AWS_STORAGE_BUCKET_NAME = "<app_name>"
AWS_S3_CUSTOM_DOMAIN = "s3.amazonaws.com/%s" % AWS_STORAGE_BUCKET_NAME
MEDIA_URL = "https://%s/media/" % AWS_S3_CUSTOM_DOMAIN
STATIC_URL = "https://%s/static/" % AWS_S3_CUSTOM_DOMAIN
COMPRESS_URL = STATIC_URL
DEFAULT_FILE_STORAGE = '<app_name>.storage.s3utils.MediaS3BotoStorage'
STATICFILES_STORAGE = '<app_name>.storage.s3utils.CachedS3BotoStorage'
COMPRESS_STORAGE = '<app_name>.storage.s3utils.CachedS3BotoStorage'
MEDIA_ROOT = '<app_name>/media/'
STATIC_ROOT = '<app_name>/static/'
COMPRESS_ROOT = STATIC_ROOT
COMPRESS_ENABLED = True
COMPRESS_CSS_FILTERS = ['compressor.filters.css_default.CssAbsoluteFilter',
'compressor.filters.cssmin.CSSMinFilter'
]
COMPRESS_PARSER = 'compressor.parser.HtmlParser'
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'compressor.finders.CompressorFinder'
)
and my s3utils.py
class CachedS3BotoStorage(S3BotoStorage):
"""
S3 storage backend that saves files locally too.
"""
location = 'static'
def __init__(self, *args, **kwargs):
super(CachedS3BotoStorage, self).__init__(*args, **kwargs)
self.local_storage = get_storage_class(
"compressor.storage.CompressorFileStorage")()
def save(self, name, content):
name = super(CachedS3BotoStorage, self).save(name, content)
self.local_storage._save(name, content)
return name
class MediaS3BotoStorage(S3BotoStorage):
""" S3 storage backend that saves to the 'media' subdirectory"""
location = 'media'
0👍
Looks like someone had the same problem here: https://github.com/django-compressor/django-compressor/issues/368#issuecomment-182817810
Try this:
import copy
def save(self, name, content):
content2 = copy.copy(content)
name = super(CachedS3BotoStorage, self).save(name, content)
self.local_storage._save(name, content2)
return name
Note: I’m using django-storages S3BotoStorage & django-compressor together without issue. I think it’s the gzipping that’s causing problems.
- Python Error: name 'admin' is not defined
- 'instancemethod' object has no attribute '__getitem__'
- Django Proxy Model Permissions Do Not Appear
Source:stackexchange.com