traefik/integration/fixtures/healthcheck/port_overload.toml

28 lines
489 B
TOML
Raw Normal View History

2017-09-18 13:50:03 +00:00
defaultEntryPoints = ["http"]
logLevel = "DEBUG"
[entryPoints]
[entryPoints.http]
address = ":8000"
[api]
2017-09-18 13:50:03 +00:00
[file]
[backends]
[backends.backend1]
[backends.backend1.healthcheck]
path = "/health"
port = 80
interval = "1s"
2018-09-27 18:16:03 +00:00
timeout = "0.9s"
2017-09-18 13:50:03 +00:00
[backends.backend1.servers.server1]
url = "http://{{.Server1}}:81"
2018-04-11 14:30:04 +00:00
weight = 1
2017-09-18 13:50:03 +00:00
[frontends]
[frontends.frontend1]
backend = "backend1"
[frontends.frontend1.routes.test_1]
rule = "Host:test.localhost"