【发布时间】:2016-06-09 05:37:21
【问题描述】:
为了保护我的网站,我使用 Let's encyprt certbot 生成 privkey.pem, cert.pem, chain.pem, and fullchain.pem
当我从桌面 chrome 或 firefox 连接我的网站时,似乎没问题。但是当我连接移动浏览器如chrome-android时,它会阻止连接并显示untrusted certificate authority。
我正在使用 Django==1.9.7 和 gunicorn==19.6.0。这是我的 gunicorn 配置文件:
bind = '0.0.0.0:443'
workers = 4
worker_class = 'gevent'
worker_connections = 1000
keepalive = 5
keyfile = 'privkey.pem'
certfile = 'cert.pem'
我错过了什么?
【问题讨论】:
标签: ssl gunicorn lets-encrypt