traefik/integration/fixtures/log_rotation_config.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

################################################################
# Global configuration
################################################################
[accessLog]
filePath = "access.log"
[log]
filePath = "traefik.log"
logLevel = "ERROR"
[entryPoints]
[entryPoints.http]
address = ":8000"
[entryPoints.api]
address = ":7888"
2017-10-02 08:32:02 +00:00
checkNewVersion = false
################################################################
# Api configuration backend
################################################################
[api]
entryPoint = "api"
################################################################
# File configuration backend
################################################################
[providers]
[providers.file]
################################################################
# rules
################################################################
2018-11-14 09:18:03 +00:00
[Routers]
[Routers.router1]
Service = "service1"
Rule = "Path: /test1"
2018-04-11 14:30:04 +00:00
2018-11-14 09:18:03 +00:00
[Services]
[Services.service1]
[Services.service1.LoadBalancer]
[[Services.service1.LoadBalancer.Servers]]
URL = "http://127.0.0.1:8081"
Weight = 1