traefik/integration/fixtures/grpc/config.toml

30 lines
593 B
TOML
Raw Normal View History

[serversTransport]
2018-04-06 07:38:03 +00:00
rootCAs = [ """{{ .CertContent }}""" ]
2017-08-06 09:55:42 +00:00
[global]
2018-11-14 09:18:03 +00:00
debug = true
2017-08-06 09:55:42 +00:00
[entryPoints]
[entryPoints.https]
2018-11-14 09:18:03 +00:00
address = ":4443"
2017-08-06 09:55:42 +00:00
[entryPoints.https.tls]
[entryPoints.https.tls.DefaultCertificate]
2018-11-14 09:18:03 +00:00
certFile = """{{ .CertContent }}"""
keyFile = """{{ .KeyContent }}"""
2017-08-06 09:55:42 +00:00
[api]
2017-08-06 09:55:42 +00:00
[providers]
[providers.file]
2017-08-06 09:55:42 +00:00
2018-11-14 09:18:03 +00:00
[routers]
[routers.router1]
rule = "Host(`127.0.0.1`)"
2018-11-14 09:18:03 +00:00
service = "service1"
[services]
[services.service1.loadbalancer]
[[services.service1.loadbalancer.servers]]
url = "https://127.0.0.1:{{ .GRPCServerPort }}"
weight = 1