django-storages with multiple S3 Buckets

前端 未结 4 992
野趣味
野趣味 2020-12-07 23:09

I am using AWS and I will have different buckets in my application. I am also using Django-Storages. Is there a way to specify which bucket I want to upload the file to (for

4条回答
  •  眼角桃花
    2020-12-07 23:59

    For S3Boto3Storage use this:

    media_file = models.FileField('media file', storage=S3Boto3Storage(bucket_name='media_bucket'), upload_to='media', blank=True)
    

提交回复
热议问题