We have an image uploader that uploads to AWS, using django-storages. Right now it sends images over http but we want it to use https.

Googling didn't help me find a way to configure django-storages to do it. Does anyone know the best way to accomplish this, or any documentation that would point me in the right direction.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Looking at the source it appears you can enable HTTPS by setting AWS_S3_SECURE_URLS = True.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.