traefik/integration/fixtures/healthcheck/port_overload.toml

33 lines
605 B
TOML
Raw Normal View History

[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
2017-09-18 13:50:03 +00:00
logLevel = "DEBUG"
[entrypoints]
[entrypoints.web]
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
[providers]
[providers.file]
2017-09-18 13:50:03 +00:00
[http.routers]
[http.routers.router1]
2018-11-14 09:18:03 +00:00
service = "service1"
Rule = "Host(`test.localhost`)"
2018-11-14 09:18:03 +00:00
[http.services]
[http.services.service1.loadbalancer]
2018-11-14 09:18:03 +00:00
method = "drr"
[http.services.service1.loadbalancer.healthcheck]
2018-11-14 09:18:03 +00:00
path = "/health"
port = 80
interval = "1s"
timeout = "0.9s"
[[http.services.service1.loadbalancer.servers]]
2018-11-14 09:18:03 +00:00
url = "http://{{.Server1}}:81"
weight = 1