Skip to content Skip to sidebar Skip to footer

Django: Importerror: No Module Named Sslserver

I have setup a django server on centos 7. When I start the server, I encounter this error Unhandled exception in thread started by Traceback (

Solution 1:

Install the module in your Python distribution or virtualenv:

$ pip install django-sslserver

Add the application to your INSTALLED_APPS:

INSTALLED_APPS = (...
    "sslserver",
    ...
)

Start a SSL-enabled debug server:

$ python manage.py runsslserver

and access app on https://localhost:8000 or start server on specified port:

$ python manage.py runsslserver 127.0.0.1:8000

Post a Comment for "Django: Importerror: No Module Named Sslserver"