Python3 Sanic + ssl证书

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 Sanic + ssl证书相关的知识,希望对你有一定的参考价值。

首先,我是第一次这样做,我知道我迷路了。

我想使用Python Sanic作为我的网站的框架。但是我也想使用我的SSL证书和我的域。 Sanic文档中的方法无效。我在网上搜索,发现我需要nginx或Apache2。但是我不知道该怎么办。

答案
要启用内置的SSL支持,

app.run(host="0.0.0.0", port=443, ssl=dict( cert="/etc/letsencrypt/live/example.com/fullchain.pem", key="/etc/letsencrypt/live/example.com/privkey.pem", ))

以上是关于Python3 Sanic + ssl证书的主要内容,如果未能解决你的问题,请参考以下文章

python3 urllib.requesturlopen 一个https 时ssl证书错误!

python3 urllib.requesturlopen 一个https 时ssl证书错误!

我可以使用 Python3.6 Sanic 在 websockets 中检测到“连接丢失”吗?

当 HTTPS 站点使用“ISRG Root X1”的 CA 时,Python3.4+requests 2.26 无法验证 SSL 证书 - 为啥?

我可以使用Python3.6 Sanic检测websockets中的“连接丢失”吗?

c# https请求忽略证书验证_各种编程语言忽略http的SSL证书认证