【发布时间】:2020-06-16 19:13:54
【问题描述】:
我想使用 certbot 为指向我的域的子域创建 SSL 证书。但是在生成下面的命令时,我收到了这个错误:certbot.errors.PluginError: Unable to find a Route53 hosted zone for _acme-challenge.hello.example.com
命令如下:
sudo certbot certonly -d hello.example.com --dns-route53 -n --agree-tos --non-interactive --server https://acme-v02.api.letsencrypt.org/directory -i apache
主子域:my.subdomain.com
其他子域:
- hello.example.com -> CNAME 到 secure.subdomain.com
- world.another-example.com -> CNAME 到 secure.subdomain.com
因此访问这些子域应该会显示带有相应 SSL 证书的 my.subdomain.com 网页。
【问题讨论】:
标签: linux ssl amazon-route53 lets-encrypt certbot