traefik/integration/fixtures/healthcheck/port_overload.toml

29 lines
512 B
TOML
Raw Normal View History

2017-09-18 13:50:03 +00:00
defaultEntryPoints = ["http"]
logLevel = "DEBUG"
[entryPoints]
[entryPoints.http]
2018-11-14 09:18:03 +00:00
address = ":8000"
2017-09-18 13:50:03 +00:00
[api]
2017-09-18 13:50:03 +00:00
[file]
2018-11-14 09:18:03 +00:00
[routers]
[routers.router1]
service = "service1"
2017-09-18 13:50:03 +00:00
rule = "Host:test.localhost"
2018-11-14 09:18:03 +00:00
[services]
[services.service1.loadbalancer]
method = "drr"
[services.service1.loadbalancer.healthcheck]
path = "/health"
port = 80
interval = "1s"
timeout = "0.9s"
[[services.service1.loadbalancer.servers]]
url = "http://{{.Server1}}:81"
weight = 1