How to make django site https in windows10. I am using public IP not local host.
I tried putting the following code in settings.py got from Error "You're accessing the development server over HTTPS, but it only supports HTTP"
CORS_REPLACE_HTTPS_REFERER = False
HOST_SCHEME = "http://"
SECURE_PROXY_SSL_HEADER = None
SECURE_SSL_REDIRECT = False
SESSION_COOKIE_SECURE = False
CSRF_COOKIE_SECURE = False
SECURE_HSTS_SECONDS = None
SECURE_HSTS_INCLUDE_SUBDOMAINS = False
SECURE_FRAME_DENY = False
I get the following error
[09/Sep/2019 12:50:18] code 400, message Bad request version ('Gð\x1a\x15Ä«Öõß/\x02h|.\x9a\x11,\x93') [09/Sep/2019 12:50:18] You're accessing the development server over HTTPS, but it only supports HTTP.
I even made DEBUG = False
But no use still the same error.
Now my issue is I am lost in trying to implement SSL in django on Windows 10 OS