[Answer]-How to change private S3 bucket setting to serve images as http (not https) with django-storages?

1👍

Ok, I read the django-storages source code, and it’s there.

django-storages on github

All I need to do is set SECURE_URLS to false, like this.

AWS_S3_SECURE_URLS = False

🙂

Leave a comment