traefik/integration/fixtures/healthcheck/port_overload.toml

34 lines
639 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"
2017-09-18 13:50:03 +00:00
[entryPoints]
[entryPoints.web]
2018-11-14 09:18:03 +00:00
address = ":8000"
2017-09-18 13:50:03 +00:00
[api]
2019-09-06 13:08:04 +00:00
insecure = true
2017-09-18 13:50:03 +00:00
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 09:30:05 +00:00
## dynamic configuration ##
2017-09-18 13:50:03 +00:00
[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"
port = 80
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}}:81"