我在虚拟主机上有一个域,在Digital Ocean上有一个子域。我正在尝试使用traefik.toml中的acme配置注册一个LetsEncrypt SSL证书。

[acme]
email = "[email protected]"
storage = "acme.json"
entryPoint = "https"
OnHostRule = true


日志提供以下错误:

time="2018-01-12T03:25:37Z" level=debug msg="LoadCertificateForDomains [endpoint.pirion.net]..."
time="2018-01-12T03:25:37Z" level=debug msg="Look for provided certificate to validate [endpoint.pirion.net]..."
time="2018-01-12T03:25:37Z" level=debug msg="No provided certificate found for domains [endpoint.pirion.net], get ACME certificate."
time="2018-01-12T03:25:37Z" level=debug msg="Loading ACME certificates [endpoint.pirion.net]..."
time="2018-01-12T03:25:37Z" level=error msg="map[endpoint.pirion.net:[endpoint.pirion.net] acme: Could not determine solvers]"
time="2018-01-12T03:25:37Z" level=error msg="Error getting ACME certificates [endpoint.pirion.net] : Cannot obtain certificates map[endpoint.pirion.net:[endpoint.pirion.net] acme: Could not determine solvers]+v"


我找不到很多关于求解器的信息。我需要添加一些设置吗?

最佳答案

这是由于“加密”问题造成的:


https://community.letsencrypt.org/t/2018-01-09-issue-with-tls-sni-01-and-shared-hosting-infrastructure/49996
https://community.letsencrypt.org/t/2018-01-11-update-regarding-acme-tls-sni-and-shared-hosting-infrastructure/50188


您可以改用DNS质询。 https://docs.traefik.io/configuration/acme/#dnsprovider

10-08 06:57