traefik/integration/fixtures/grpc/config_insecure.toml

33 lines
583 B
TOML
Raw Normal View History

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