traefik/integration/fixtures/log_rotation_config.toml

37 lines
616 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
filePath = "traefik.log"
level = "ERROR"
[accessLog]
2019-07-01 09:30:05 +00:00
filePath = "access.log"
[entryPoints]
[entryPoints.web]
2019-07-01 09:30:05 +00:00
address = ":8000"
[entryPoints.api]
2019-07-01 09:30:05 +00:00
address = ":7888"
[api]
2019-07-01 09:30:05 +00:00
entryPoint = "api"
[providers]
2019-07-01 09:30:05 +00:00
[providers.file]
## 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 = "Path(`/test1`)"
2018-04-11 14:30:04 +00:00
[http.services]
[http.services.service1]
2019-07-01 09:30:05 +00:00
[http.services.service1.loadBalancer]
2018-11-14 09:18:03 +00:00
2019-07-01 09:30:05 +00:00
[[http.services.service1.loadBalancer.servers]]
url = "http://127.0.0.1:8081"