32 lines
621 B
TOML
32 lines
621 B
TOML
[global]
|
|
checkNewVersion = false
|
|
sendAnonymousUsage = false
|
|
|
|
[log]
|
|
level = "DEBUG"
|
|
|
|
[entryPoints]
|
|
[entryPoints.web]
|
|
address = ":8000"
|
|
|
|
[api]
|
|
|
|
[providers.file]
|
|
filename = "{{ .SelfFilename }}"
|
|
|
|
## dynamic configuration ##
|
|
|
|
[http.routers]
|
|
[http.routers.router1]
|
|
service = "service1"
|
|
rule = "Host(`test.localhost`)"
|
|
|
|
[http.services]
|
|
[http.services.service1.loadBalancer]
|
|
[http.services.service1.loadBalancer.healthcheck]
|
|
path = "/health"
|
|
port = 80
|
|
interval = "1s"
|
|
timeout = "0.9s"
|
|
[[http.services.service1.loadBalancer.servers]]
|
|
url = "http://{{.Server1}}:81"
|