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

38 lines
775 B
TOML
Raw Normal View History

[global]
2019-07-01 09:30:05 +00:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 09:30:05 +00:00
level = "DEBUG"
2022-11-21 17:36:05 +00:00
noColor = true
[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]
2019-09-06 13:08:04 +00:00
insecure = true
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 09:30:05 +00:00
## dynamic configuration ##
[http.routers]
[http.routers.router1]
2018-11-14 09:18:03 +00:00
service = "service1"
2019-07-01 09:30:05 +00:00
rule = "Host(`test.localhost`)"
2018-11-14 09:18:03 +00:00
[http.services]
2019-07-01 09:30:05 +00:00
[http.services.service1.loadBalancer]
[http.services.service1.loadBalancer.healthcheck]
2018-11-14 09:18:03 +00:00
path = "/health"
interval = "1s"
timeout = "0.9s"
2019-07-01 09:30:05 +00:00
[[http.services.service1.loadBalancer.servers]]
2018-11-14 09:18:03 +00:00
url = "http://{{.Server1}}:80"
2019-07-01 09:30:05 +00:00
[[http.services.service1.loadBalancer.servers]]
2018-11-14 09:18:03 +00:00
url = "http://{{.Server2}}:80"