1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-11 05:17:52 +03:00
traefik/integration/fixtures/log_rotation_config.toml

37 lines
616 B
TOML
Raw Normal View History

[global]
2019-07-01 12:30:05 +03:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 12:30:05 +03:00
filePath = "traefik.log"
level = "ERROR"
[accessLog]
2019-07-01 12:30:05 +03:00
filePath = "access.log"
[entryPoints]
[entryPoints.web]
2019-07-01 12:30:05 +03:00
address = ":8000"
[entryPoints.api]
2019-07-01 12:30:05 +03:00
address = ":7888"
[api]
2019-07-01 12:30:05 +03:00
entryPoint = "api"
[providers]
2019-07-01 12:30:05 +03:00
[providers.file]
## dynamic configuration ##
[http.routers]
[http.routers.router1]
2018-11-14 12:18:03 +03:00
Service = "service1"
2019-07-01 12:30:05 +03:00
rule = "Path(`/test1`)"
2018-04-11 17:30:04 +03:00
[http.services]
[http.services.service1]
2019-07-01 12:30:05 +03:00
[http.services.service1.loadBalancer]
2018-11-14 12:18:03 +03:00
2019-07-01 12:30:05 +03:00
[[http.services.service1.loadBalancer.servers]]
url = "http://127.0.0.1:8081"