2017-08-11 10:04:58 +00:00
|
|
|
################################################################
|
|
|
|
# Global configuration
|
|
|
|
################################################################
|
2018-11-27 16:42:04 +00:00
|
|
|
[accessLog]
|
|
|
|
filePath = "access.log"
|
|
|
|
|
|
|
|
[log]
|
|
|
|
filePath = "traefik.log"
|
2017-08-11 10:04:58 +00:00
|
|
|
logLevel = "ERROR"
|
2018-11-27 16:42:04 +00:00
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
[entryPoints]
|
|
|
|
[entryPoints.http]
|
|
|
|
address = ":8000"
|
2018-01-11 08:46:03 +00:00
|
|
|
[entryPoints.api]
|
|
|
|
address = ":7888"
|
2017-08-11 10:04:58 +00:00
|
|
|
|
2017-10-02 08:32:02 +00:00
|
|
|
checkNewVersion = false
|
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
################################################################
|
2018-01-11 08:46:03 +00:00
|
|
|
# Api configuration backend
|
2017-08-11 10:04:58 +00:00
|
|
|
################################################################
|
2018-01-11 08:46:03 +00:00
|
|
|
[api]
|
|
|
|
entryPoint = "api"
|
2017-08-11 10:04:58 +00:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
# File configuration backend
|
|
|
|
################################################################
|
2018-11-27 16:42:04 +00:00
|
|
|
[providers]
|
|
|
|
[providers.file]
|
2017-08-11 10:04:58 +00:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
# 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
|