django使用https

作者: readilen | 来源:发表于2018-04-27 16:14 被阅读8次

使用 runserver 是不能使用 https 的

解决办法:使用 runsslserver

步骤:

1.安装:

pip install django-extensions 
pip install django-werkzeug-debugger-runserver 
pip install pyOpenSSL

2.启动方式

python manage.py runsslserver 0.0.0.0:8100 \
--certificate /etc/pki/libvirt-spice/server-cert.pem \
--key /etc/pki/libvirt-spice/server-key.pem

3.修改setting.py中的INSTALLED_APPS

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

相关文章

网友评论

    本文标题:django使用https

    本文链接:https://www.haomeiwen.com/subject/cnxilftx.html