traefik/integration/fixtures/retry/simple.toml

38 lines
707 B
TOML
Raw Normal View History

[global]
2019-07-01 11:30:05 +02:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 11:30:05 +02:00
level = "DEBUG"
[entryPoints]
[entryPoints.web]
2019-07-01 11:30:05 +02:00
address = ":8000"
[api]
2019-09-06 15:08:04 +02:00
insecure = true
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 11:30:05 +02:00
## dynamic configuration ##
2018-11-14 10:18:03 +01:00
[http.routers]
[http.routers.router1]
2019-07-01 11:30:05 +02:00
service = "service1"
middlewares = [ "retry" ]
rule = "PathPrefix(`/`)"
2018-11-14 10:18:03 +01:00
2019-07-01 11:30:05 +02:00
[http.middlewares.retry.retry]
attempts = 3
2018-11-14 10:18:03 +01:00
[http.services]
[http.services.service1]
2019-07-01 11:30:05 +02:00
[http.services.service1.loadBalancer]
2018-11-14 10:18:03 +01:00
2019-07-01 11:30:05 +02:00
[[http.services.service1.loadBalancer.servers]]
url = "http://{{ .WhoamiIP }}:8080"
2018-11-14 10:18:03 +01:00
2019-07-01 11:30:05 +02:00
[[http.services.service1.loadBalancer.servers]]
url = "http://{{ .WhoamiIP }}:80"