1.启动
nohup python manage.py runsslserver 0.0.0.0:80 --certificate ./1_yibiaoxin.com_bundle.crt --key ./yibiaoxin.com.key
nohup 挂在后台保障退出后接口不挂
runsslserver 需要单独下一个模块
证书路径:
./1_yibiaoxin.com_bundle.crt
./yibiaoxin.com.key
2:作用
ssl证书,域名解析,域名备案都在腾讯云弄好就可以用
ssl证书,用来以https启动
域名解析:是为了将自己申请的域名与买的服务器绑定在一起,用域名可以访问到自己的服务器
域名备案:懂得都懂
3.访问
通过https://域名:端口/路径/
访问到相关接口
原文:https://www.cnblogs.com/flhw/p/14809599.html