django-s3-storage icon indicating copy to clipboard operation
django-s3-storage copied to clipboard

Django Amazon S3 file storage.

Results 18 django-s3-storage issues
Sort by recently updated
recently updated
newest added

When using Cloudfront as a CDN, it is possible to have your S3 bucket be private, but [give permission to Cloudfront to serve files from it](https://aws.amazon.com/premiumsupport/knowledge-center/cloudfront-access-to-amazon-s3/). This isn't currently possible...

I always get the same error, independently of the bucket name: `Invalid bucket name "": Bucket name must match the regex "^[a-zA-Z0-9.\-_]{1,255}$" or be an ARN matching the regex "^arn:(aws).*:s3:[a-z\-0-9]+:[0-9]{12}:accesspoint[/:][a-zA-Z0-9\-]{1,63}$"`

Is there a way I can specify the storage folder or maybe easily override some of the settings with distinct classes ``` class ProfilePicStorage(S3Storage): bucket = 'bucket' path = 'media/profiles/'...

@etianen Hello Dave! https://aws.amazon.com/ru/blogs/compute/upcoming-changes-to-the-python-sdk-in-aws-lambda/ From AWS Compute Blog: "main changes is that the requests library was replaced with urllib3." I'm not sure if need to worry about it. I see...

We're using the plugin **django-ckeditor** to add a wysiwyg editor to our models. The package fails to load its static files when used together with **django-s3-storage**, because of a lost...

This adds support for the `botocore.client.Config` `max_pool_connections` setting. This is critical for gevent workers handling many connections in which an s3 url hit occurs. By default the number of connections...

When using django-s3-storage together with Cloudflare R2 there are no public buckets. You'll need a so-called Worker to proxy the public requests to the private bucket. In this setup, you'll...