我正在使用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未找到”错误外什么也没有。问题是什么 ?
而且我们也必须跑步
     $ zappa证明我们每次需要
更新证书?

最佳答案

这是由于订购协议上的某些更改而引起的临时错误。明天再次更新zappa,然后重试。

https://community.letsencrypt.org/t/subscriber-agreement-update-november-15-2017/45607

10-06 15:11