11 lines
285 B
TOML
11 lines
285 B
TOML
|
[http]
|
||
|
[http.routers]
|
||
|
[http.routers.whoami]
|
||
|
entryPoints = ["http"]
|
||
|
rule = "Host(`whoami.localhost`)"
|
||
|
service = "whoami"
|
||
|
[http.services]
|
||
|
[http.services.whoami.loadBalancer]
|
||
|
[[http.services.whoami.loadBalancer.servers]]
|
||
|
url = "http://whoami/"
|