搜到了有相关的介绍,供参考,可以申请到二级域名的通配符证书
https://blog.csdn.net/weixin_34378969/article/details/88833995
https://segmentfault.com/a/1190000014727668
两篇参考文章内容相同
Let's encrypt 申请通配域名的方式如下:
certbot certonly --manual \
-d '*.exampple.com' \
--agree-tos \
--email domain@example.com \
--server https://acme-v02.api.letsencrypt.org/directory
上面是通配的子域名, 只能是 a.example.com形式, 不能是 a.b.example.com 形式. 要使用更下级的子域有几个要点: 成功后你会看到签发给你的证书的域名是这样的 *.b.example.com, 成功之后, 就可以随便添加你的三级域名了.
x.b.example.com
y.b.example.com
z.b.example.com
|