哪些证书文件需要传递给 gunicorn 用于 https?

哪些证书文件需要传递给 gunicorn 用于 https?

我有以下文件:private.key、example.com.pem、example.com.crt、example.com.pem-full-chain、example.com.p7b 和 server.csr

我正在使用以下方法启动 gunicorn:

gunicorn -b example.com:5000'app:create_app()'--certfile=example.com.crt--keyfile=private.key

似乎没有什么效果,每次我去的时候都会收到无效证书警告https://example.com:5000

相关内容