2017-08-11 11:04:58 +01:00
|
|
|
################################################################
|
|
|
|
# Global configuration
|
|
|
|
################################################################
|
2018-11-27 17:42:04 +01:00
|
|
|
[accessLog]
|
|
|
|
filePath = "access.log"
|
|
|
|
|
|
|
|
[log]
|
|
|
|
filePath = "traefik.log"
|
2017-08-11 11:04:58 +01:00
|
|
|
logLevel = "ERROR"
|
2018-11-27 17:42:04 +01:00
|
|
|
|
2019-03-14 09:30:04 +01:00
|
|
|
[entrypoints]
|
|
|
|
[entrypoints.web]
|
2017-08-11 11:04:58 +01:00
|
|
|
address = ":8000"
|
2019-03-14 09:30:04 +01:00
|
|
|
[entrypoints.api]
|
2018-01-11 09:46:03 +01:00
|
|
|
address = ":7888"
|
2017-08-11 11:04:58 +01:00
|
|
|
|
2017-10-02 10:32:02 +02:00
|
|
|
checkNewVersion = false
|
|
|
|
|
2017-08-11 11:04:58 +01:00
|
|
|
################################################################
|
2018-01-11 09:46:03 +01:00
|
|
|
# Api configuration backend
|
2017-08-11 11:04:58 +01:00
|
|
|
################################################################
|
2018-01-11 09:46:03 +01:00
|
|
|
[api]
|
|
|
|
entryPoint = "api"
|
2017-08-11 11:04:58 +01:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
# File configuration backend
|
|
|
|
################################################################
|
2018-11-27 17:42:04 +01:00
|
|
|
[providers]
|
|
|
|
[providers.file]
|
2017-08-11 11:04:58 +01:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
# rules
|
|
|
|
################################################################
|
2019-03-14 09:30:04 +01:00
|
|
|
[http.routers]
|
|
|
|
[http.routers.router1]
|
2018-11-14 10:18:03 +01:00
|
|
|
Service = "service1"
|
2019-01-30 16:24:07 +01:00
|
|
|
Rule = "Path(`/test1`)"
|
2018-04-11 16:30:04 +02:00
|
|
|
|
2019-03-14 09:30:04 +01:00
|
|
|
[http.services]
|
|
|
|
[http.services.service1]
|
|
|
|
[http.services.service1.LoadBalancer]
|
2018-11-14 10:18:03 +01:00
|
|
|
|
2019-03-14 09:30:04 +01:00
|
|
|
[[http.services.service1.LoadBalancer.Servers]]
|
2018-11-14 10:18:03 +01:00
|
|
|
URL = "http://127.0.0.1:8081"
|
|
|
|
Weight = 1
|