【发布时间】:2019-01-03 22:28:41
【问题描述】:
这是我的配置
[entryPoints]
[entryPoints.http]
address = ":801"
[entryPoints.https]
address = ":802"
[entryPoints.https.tls]
[entryPoints.https.tls.ClientCA]
files = ["/etc/ssl/comodo/bundle.crt"]
[[entryPoints.https.tls.certificates]]
certFile = "/etc/ssl/comodo/www.crt"
keyFile = "/etc/ssl/comodo/www.key"
[frontends]
[frontends.http] # default
entryPoints = ["http", "https"]
backend = "fallback"
passHostHeader = true
现在我正在尝试访问 https://mydomain:802,但在 traefik 调试输出中出现以下错误
http: TLS handshake error from 111.111.111.111:64463: tls: client didn't provide a certificate
卷曲错误信息
error:14094412:SSL routines:SSL3_READ_BYTES:sslv3 alert bad certificate
我不知道我做错了什么。
【问题讨论】: