getssl 无法访问质询令牌 URL

getssl 无法访问质询令牌 URL

我正在使用 getssl (https://github.com/srvrco/getssl)来更新我的 SSL 证书。当我尝试更新我的域名时,我收到此消息:

Check all certificates
Registering account
Verify each domain
Verifying mydomain.org.au
copying challenge token to /home/www/mydomain/.well-known/acme-challenge/k_K<blah>
getssl: for some reason could not reach http://mydomain.org.au/.well-known/acme-challenge/k_K<blah> - please check it manually

如果我将 URL 粘贴到浏览器中,它会转换为

http://mydomain.org.au.well-known/acme-challenge/k_K\

换句话说,域名末尾的斜线被删除了。

这可能是我的 Apache 配置中处理 URL 中的点的问题吗?我试过这个,但没有成功:

<Directory /home/www/mydomain/.well-known>
Require all granted
</Directory>

答案1

我在 vhosts.conf 中发现了有问题的行 - 已将其删除:

永久重定向 /https://mydomain.org.au

相关内容