我使用Zappa将我的Django代码部署到AWS Lambda。在此过程中,我必须续订我的域SSL证书,因为它已过期。我试图创造新的做法 所以我尝试通过
创建一个新的SSL密钥 $ openssl genrsa 2048 > account.key;
并添加了我的域名和路径到zappa_settings.json文件。 我试着跑
$ zappa certify production
这就是我得到的错误
$ zappa certify production
Calling certify for stage production..
Are you sure you want to certify? [y/n] y
Certifying domain xxxx.domain.com ..
Error registering: 400 {
"type": "urn:acme:error:malformed",
"detail": "Provided agreement URL
[https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf] does not match current agreement URL [https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf]",
"status": 400
}
Failed to generate or install certificate! :(
==============
我发现链接https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf只有“404 Not Found”错误。问题是什么 ? 我们也必须跑步 每次我们需要时,$ zappa都会认证 续签证书?
答案 0 :(得分:0)
由于订阅协议的某些更改而导致的临时错误。明天再次更新zappa并重试。
https://community.letsencrypt.org/t/subscriber-agreement-update-november-15-2017/45607