Created
October 29, 2011 11:00
-
-
Save richleland/1324335 to your computer and use it in GitHub Desktop.
S3BotoStorage subclass for media and static buckets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' | |
STATICFILES_STORAGE = 'path.to.storage.S3StaticStorage' | |
THUMBNAIL_DEFAULT_STORAGE = 'storages.backends.s3boto.S3BotoStorage' | |
AWS_ACCESS_KEY_ID = 'YOUR KEY' | |
AWS_SECRET_ACCESS_KEY = 'YOUR KEY' | |
AWS_STORAGE_BUCKET_NAME = 'media.YOURSITE.com' | |
AWS_STATIC_BUCKET_NAME = 'static.YOURSITE.com' | |
AWS_S3_CUSTOM_DOMAIN = AWS_STORAGE_BUCKET_NAME | |
AWS_STATIC_CUSTOM_DOMAIN = AWS_STATIC_BUCKET_NAME | |
STATIC_URL = 'http://%s/' % AWS_STATIC_BUCKET_NAME | |
MEDIA_URL = 'http://%s/' % AWS_STORAGE_BUCKET_NAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.conf import settings | |
from storages.backends.s3boto import S3BotoStorage | |
class S3StaticStorage(S3BotoStorage): | |
"S3 storage backend that sets the static bucket." | |
def __init__(self, *args, **kwargs): | |
super(S3StaticStorage, self).__init__(bucket=settings.AWS_STATIC_BUCKET_NAME, | |
custom_domain=settings.AWS_STATIC_CUSTOM_DOMAIN, | |
*args, **kwargs) |
@madteckhead yep you're right. The purpose of this gist was to allow two separate buckets for media and static. If you only set DEFAULT_FILE_STORAGE it will do the behavior you mention by default.
Is there a good way to migrate existing media to S3—something similar to ./manage collectstatic?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unless Im mistaken this just uses two buckets, not mapping onto the one which IMHO is more desirable.