首先安装需要用到的包
pip install django-extensions pip install django-werkzeug-debugger-runserver pip install pyOpenSSL
添加到INSTALLED_APPS里
INSTALLED_APPS = [ ... 'werkzeug_debugger_runserver', # 开启https需要的服务 'django_extensions', # 开启https需要的服务 ... ]
启动https服务
python manage.py runserver_plus --cert server.crt 0.0.0.0:8000