对于在 Certbot 中将 -d 与同一域的 2 个版本一起使用,我尝试了以下操作。
相反,做:
certbot --nginx
然后选择 1+2(对于domain.tld + www.domain.tld),我这样做了:
certbot --nginx -d contfix.co.il, -d www.contfix.co.il
但我得到了:
Requested domain is not a FQDN because it contains an empty label.
为什么 Certbot 不接受集合?
答案1
嗯,原因是我用了逗号。逗号是多余的。
这有效:
certbot --nginx -d contfix.co.il -d www.contfix.co.il