Using Django storages with Amazon S3 and https

We have an image downloader that loads into AWS using django repositories. Right now it is sending images via http, but we want it to use https.

Googling did not help me find a way to configure django repositories for this. Does anyone know how to do this, or any documentation that would point me in the right direction.

+9
python django django-storage python-django-storages
source share
1 answer

AWS_S3_SECURE_URLS = True looking at the source , you can enable HTTPS by setting AWS_S3_SECURE_URLS = True .

+18
source

All Articles