这是我的目标,我想在我的服务器上设置一个反向代理。我曾经使用 Haproxy 来完成这项工作,但我想尝试 Traefik。
首先,我想获取 Traefik 的仪表板页面。它几乎可以工作,弹出窗口似乎输入了我的凭据,但即使我确定凭据正确,它也总是失败。
这是我的 traefik.toml
defaultEntryPoints = ["http", "https"]
# Web section is for the dashboard interface
[web]
address = ":8080"
[web.auth.basic]
users = ["admin:aaa"]
# entryPoints section configures the addresses that Traefik and the proxied containers can listen on
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
这是我运行容器的 docker 命令
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
-v $PWD/traefik.toml:/traefik.toml \
-v $PWD/acme.json:/acme.json \
-p 80:80 \
-p 443:443 \
-l traefik.frontend.rule=Host:monitor.firelabs.fr \
-l traefik.port=8080 \
--network proxy \
--name traefik \
traefik:1.3.6-alpine --docker --logLevel=DEBUG
如您所见,我的凭据是 admin:aaa,每当我尝试将它们输入对话框时,它都会向我发送以下消息:
time="2017-11-19T13:28:22Z" level=debug msg="Basic auth success..."
如您所见,这是一个非常基本的配置,仅用于开始使用 Traefik。所以我不知道我错在哪里,我查看了有关网络部分配置的文档,它似乎没有错......
我错过了错字吗?