我正在尝试将域添加到我的 LE 证书。虽然我之前添加了域,但似乎有些不对劲。
特别
sudo certbot renew --dry-run
确认可以续订,因此所有子域都可以使用质询文件进行响应。
然而
sudo certbot certonly --cert-name mysite.com --expand -d mysite.com,www.mysite.com,oldsubdomain.mysite.com,newsubdomain.mysite.com
将为它尝试命中的每个子域返回 404。
Domain: oldsubdomain.mysite.com
Type: unauthorized
Detail: Invalid response from
http://oldsubdomain.mysite.com/.well-known/acme-challenge/QQsj9SA-tnlzRCvCK8ZrknATkqfwcr0V77d9PR9zKaE:
"<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>"
但是,如果我手动访问http://oldsubdomain.mysite.com/.well-known/acme-challenge/test
,我会收到挑战文件。
(注意,由于 SO 限制,我无法粘贴http://www.mysite.com/ )
有谁知道这里发生了什么?