1
0
mirror of https://github.com/containous/traefik.git synced 2024-12-23 17:34:13 +03:00
traefik/integration/fixtures/healthcheck/multiple-entrypoints.toml

37 lines
758 B
TOML
Raw Normal View History

[global]
2019-07-01 12:30:05 +03:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 12:30:05 +03:00
level = "DEBUG"
[entryPoints]
[entryPoints.http1]
2018-11-14 12:18:03 +03:00
address = ":8000"
[entryPoints.http2]
2018-11-14 12:18:03 +03:00
address = ":9000"
[api]
2019-09-06 16:08:04 +03:00
insecure = true
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 12:30:05 +03:00
## dynamic configuration ##
[http.routers]
[http.routers.router1]
2018-11-14 12:18:03 +03:00
service = "service1"
2019-07-01 12:30:05 +03:00
rule = "Host(`test.localhost`)"
2018-11-14 12:18:03 +03:00
[http.services]
2019-07-01 12:30:05 +03:00
[http.services.service1.loadBalancer]
[http.services.service1.loadBalancer.healthcheck]
2018-11-14 12:18:03 +03:00
path = "/health"
interval = "1s"
timeout = "0.9s"
2019-07-01 12:30:05 +03:00
[[http.services.service1.loadBalancer.servers]]
2018-11-14 12:18:03 +03:00
url = "http://{{.Server1}}:80"
2019-07-01 12:30:05 +03:00
[[http.services.service1.loadBalancer.servers]]
2018-11-14 12:18:03 +03:00
url = "http://{{.Server2}}:80"