[Answered ]-Unable to view local server after installing django-sslify

2👍

Most likely your browser cached the HTTP 301/302 response that redirects your HTTP request to HTTPS. Clear browser cache or try another browser to test if this is the case.

👤Selcuk

0👍

According to documentation you should disable django-sslify for local development and unittests. Put in your settings.py:

if DEBUG:
    SSLIFY_DISABLE = True

Leave a comment