traefik/integration/fixtures/reqacceptgrace.toml

32 lines
603 B
TOML
Raw Normal View History

[log]
logLevel = "DEBUG"
[entrypoints]
[entrypoints.web]
address = ":8000"
[entrypoints.web.transport.lifeCycle]
RequestAcceptGraceTimeout = "10s"
[entrypoints.traefik]
address = ":8001"
[entrypoints.traefik.transport.lifeCycle]
RequestAcceptGraceTimeout = "10s"
[providers]
[providers.file]
[http.routers]
[http.routers.router]
2018-11-14 09:18:03 +00:00
Service = "service"
Rule = "Path(`/service`)"
2018-11-14 09:18:03 +00:00
[http.services]
[http.services.service]
[http.services.service.LoadBalancer]
2018-11-14 09:18:03 +00:00
[[http.services.service.LoadBalancer.Servers]]
2018-11-14 09:18:03 +00:00
URL = "{{.Server}}"
Weight = 1
[ping]