43 lines
1,008 B
TOML
43 lines
1,008 B
TOML
|
[global]
|
||
|
checkNewVersion = false
|
||
|
sendAnonymousUsage = false
|
||
|
|
||
|
[log]
|
||
|
level = "DEBUG"
|
||
|
|
||
|
[entryPoints]
|
||
|
[entryPoints.tcp]
|
||
|
address = ":8093"
|
||
|
|
||
|
[api]
|
||
|
|
||
|
[providers.file]
|
||
|
|
||
|
[tcp]
|
||
|
[tcp.routers]
|
||
|
[tcp.routers.to-whoami-no-cert]
|
||
|
rule = "HostSNI(`whoami-c.test`)"
|
||
|
service = "whoami-no-cert"
|
||
|
entryPoints = [ "tcp" ]
|
||
|
[tcp.routers.to-whoami-no-cert.tls]
|
||
|
options = "foo"
|
||
|
|
||
|
[tcp.routers.to-whoami-sni-strict]
|
||
|
rule = "HostSNI(`whoami-d.test`)"
|
||
|
service = "whoami-no-cert"
|
||
|
entryPoints = [ "tcp" ]
|
||
|
[tcp.routers.to-whoami-sni-strict.tls]
|
||
|
options = "bar"
|
||
|
|
||
|
[tcp.services.whoami-no-cert]
|
||
|
[tcp.services.whoami-no-cert.loadbalancer]
|
||
|
method = "wrr"
|
||
|
[[tcp.services.whoami-no-cert.loadbalancer.servers]]
|
||
|
address = "localhost:8083"
|
||
|
|
||
|
[tlsoptions.foo]
|
||
|
minversion = "VersionTLS11"
|
||
|
|
||
|
[tlsoptions.bar]
|
||
|
minversion = "VersionTLS12"
|