traefik/integration/fixtures/healthcheck/multiple-entrypoints-drr.toml

37 lines
741 B
TOML
Raw Normal View History

[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
logLevel = "DEBUG"
[entrypoints]
[entrypoints.http1]
2018-11-14 09:18:03 +00:00
address = ":8000"
[entrypoints.http2]
2018-11-14 09:18:03 +00:00
address = ":9000"
[api]
[providers]
[providers.file]
[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"
interval = "1s"
timeout = "0.9s"
[[http.services.service1.loadbalancer.servers]]
2018-11-14 09:18:03 +00:00
url = "http://{{.Server1}}:80"
weight = 1
[[http.services.service1.loadbalancer.servers]]
2018-11-14 09:18:03 +00:00
url = "http://{{.Server2}}:80"
weight = 1