traefik/integration/fixtures/tcp/catch-all-no-tls.toml

32 lines
585 B
TOML
Raw Normal View History

[global]
2019-07-01 09:30:05 +00:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 09:30:05 +00:00
level = "DEBUG"
2022-11-21 17:36:05 +00:00
noColor = true
[entryPoints]
[entryPoints.tcp]
address = ":8093"
[api]
2019-09-06 13:08:04 +00:00
insecure = true
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 09:30:05 +00:00
## dynamic configuration ##
[tcp]
2019-07-01 09:30:05 +00:00
[tcp.routers]
[tcp.routers.to-whoami-no-tls]
entryPoints = ["tcp"]
rule = "HostSNI(`*`)"
service = "whoami-no-tls"
2019-07-01 09:30:05 +00:00
[tcp.services]
[tcp.services.whoami-no-tls.loadBalancer]
[[tcp.services.whoami-no-tls.loadBalancer.servers]]
address = "{{ .WhoamiBannerAddress }}"