28 lines
512 B
TOML
28 lines
512 B
TOML
defaultEntryPoints = ["http"]
|
|
|
|
logLevel = "DEBUG"
|
|
|
|
[entryPoints]
|
|
[entryPoints.http]
|
|
address = ":8000"
|
|
|
|
[api]
|
|
|
|
[file]
|
|
|
|
[routers]
|
|
[routers.router1]
|
|
service = "service1"
|
|
rule = "Host:test.localhost"
|
|
|
|
[services]
|
|
[services.service1.loadbalancer]
|
|
method = "drr"
|
|
[services.service1.loadbalancer.healthcheck]
|
|
path = "/health"
|
|
port = 80
|
|
interval = "1s"
|
|
timeout = "0.9s"
|
|
[[services.service1.loadbalancer.servers]]
|
|
url = "http://{{.Server1}}:81"
|
|
weight = 1
|