mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-26 03:24:01 +03:00
Merge pull request #1522 from sfdye/remove-aws-s3-header-workaround
Remove AWS S3 header bytes workaround
This commit is contained in:
commit
c3755ec903
|
@ -103,12 +103,8 @@ AWS_QUERYSTRING_AUTH = False
|
||||||
# AWS cache settings, don't change unless you know what you're doing:
|
# AWS cache settings, don't change unless you know what you're doing:
|
||||||
AWS_EXPIRY = 60 * 60 * 24 * 7
|
AWS_EXPIRY = 60 * 60 * 24 * 7
|
||||||
|
|
||||||
# TODO See: https://github.com/jschneier/django-storages/issues/47
|
|
||||||
# Revert the following and use str after the above-mentioned bug is fixed in
|
|
||||||
# either django-storage-redux or boto
|
|
||||||
control = 'max-age=%d, s-maxage=%d, must-revalidate' % (AWS_EXPIRY, AWS_EXPIRY)
|
|
||||||
AWS_S3_OBJECT_PARAMETERS = {
|
AWS_S3_OBJECT_PARAMETERS = {
|
||||||
'CacheControl': bytes(control, encoding='latin-1'),
|
'CacheControl': 'max-age=%d, s-maxage=%d, must-revalidate' % (AWS_EXPIRY, AWS_EXPIRY),
|
||||||
}
|
}
|
||||||
|
|
||||||
# URL that handles the media served from MEDIA_ROOT, used for managing
|
# URL that handles the media served from MEDIA_ROOT, used for managing
|
||||||
|
|
Loading…
Reference in New Issue
Block a user