Connection Refused to Minio Docker instance from my Django Application

By Default, the django minio connector tries to connect to minio using https. As you’re not running minio with https, the connector errors out, cause it doesn’t understand the protocol. To fix, just set MINIO_STORAGE_USE_HTTPS=False (See here for the official docs) in djangos settings.py.

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top