traefik/integration/fixtures/grpc/config_h2c.toml

30 lines
528 B
TOML
Raw Normal View History

[global]
2019-07-01 11:30:05 +02:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 11:30:05 +02:00
level = "DEBUG"
2022-11-21 18:36:05 +01:00
noColor = true
2018-05-24 10:52:04 +02:00
[entryPoints]
[entryPoints.web]
2018-11-14 10:18:03 +01:00
address = ":8081"
2018-05-24 10:52:04 +02:00
[api]
2019-09-06 15:08:04 +02:00
insecure = true
2018-05-24 10:52:04 +02:00
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 11:30:05 +02:00
## dynamic configuration ##
2018-05-24 10:52:04 +02:00
[http.routers]
[http.routers.router1]
rule = "Host(`127.0.0.1`)"
2018-11-14 10:18:03 +01:00
service = "service1"
[http.services]
2019-07-01 11:30:05 +02:00
[http.services.service1.loadBalancer]
[[http.services.service1.loadBalancer.servers]]
2018-11-14 10:18:03 +01:00
url = "h2c://127.0.0.1:{{ .GRPCServerPort }}"