Pointing to multiple S3 buckets in s3boto
In settings.py I have: STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage' DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' AWS_ACCESS_KEY_ID = 'xxxxxxxxxxxxx' AWS_SECRET_ACCESS_KEY = 'xxxxxxxxxxxxx' AWS_STORAGE_BUCKET_NAME = 'static.mysite.com' This is pointing to my S3 bucket static.mysite.com and works fine when I do manage.py collectstatic , it uploads all the static files to my bucket. However, I have another bucket which I use for different purposes and would like to use in certain areas of the website, for example if I have a model like this: class Image(models