traefik/integration/fixtures/healthcheck/simple.toml

30 lines
581 B
TOML
Raw Normal View History

[log]
2017-02-06 22:00:54 +00:00
logLevel = "DEBUG"
[entryPoints]
[entryPoints.http]
2018-11-14 09:18:03 +00:00
address = ":8000"
2017-02-06 22:00:54 +00:00
[api]
2017-02-06 22:00:54 +00:00
[providers]
[providers.file]
2017-02-06 22:00:54 +00:00
2018-11-14 09:18:03 +00:00
[routers]
[routers.router1]
service = "service1"
Rule = "Host(`test.localhost`)"
2018-11-14 09:18:03 +00:00
[services]
[services.service1.loadbalancer]
[services.service1.loadbalancer.healthcheck]
path = "/health"
interval = "1s"
timeout = "0.9s"
[[services.service1.loadbalancer.servers]]
url = "http://{{.Server1}}:80"
weight = 1
[[services.service1.loadbalancer.servers]]
url = "http://{{.Server2}}:80"
weight = 1