traefik/integration/fixtures/proxy-protocol/with.toml

25 lines
441 B
TOML
Raw Normal View History

2017-10-30 09:02:03 +00:00
logLevel = "DEBUG"
defaultEntryPoints = ["http"]
[entryPoints]
2018-04-11 14:30:04 +00:00
[entryPoints.http]
address = ":8000"
[entryPoints.http.proxyProtocol]
trustedIPs = ["{{.HaproxyIP}}"]
2017-10-30 09:02:03 +00:00
[api]
2017-10-30 09:02:03 +00:00
[file]
[backends]
2018-04-11 14:30:04 +00:00
[backends.backend1]
[backends.backend1.servers.server1]
url = "http://{{.WhoamiIP}}"
weight = 1
2017-10-30 09:02:03 +00:00
[frontends]
2018-04-11 14:30:04 +00:00
[frontends.frontend1]
backend = "backend1"
[frontends.frontend1.routes.test_1]
rule = "Path:/whoami"