1
0
mirror of https://github.com/containous/traefik.git synced 2024-12-22 13:34:03 +03:00
traefik/integration/fixtures/grpc/config.toml

39 lines
763 B
TOML
Raw Normal View History

[global]
2019-07-01 12:30:05 +03:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 12:30:05 +03:00
level = "DEBUG"
2022-11-21 20:36:05 +03:00
noColor = true
[serversTransport]
2019-07-01 12:30:05 +03:00
rootCAs = [ """{{ .CertContent }}""" ]
2017-08-06 12:55:42 +03:00
[entryPoints]
[entryPoints.websecure]
2018-11-14 12:18:03 +03:00
address = ":4443"
2017-08-06 12:55:42 +03:00
[api]
2019-09-06 16:08:04 +03:00
insecure = true
2017-08-06 12:55:42 +03:00
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 12:30:05 +03:00
## dynamic configuration ##
2017-08-06 12:55:42 +03:00
[http.routers]
[http.routers.router1]
rule = "Host(`127.0.0.1`)"
2018-11-14 12:18:03 +03:00
service = "service1"
[http.routers.router1.tls]
2018-11-14 12:18:03 +03:00
[http.services]
2019-07-01 12:30:05 +03:00
[http.services.service1.loadBalancer]
[[http.services.service1.loadBalancer.servers]]
2018-11-14 12:18:03 +03:00
url = "https://127.0.0.1:{{ .GRPCServerPort }}"
[tls.stores]
2019-07-01 12:30:05 +03:00
[tls.stores.default.defaultCertificate]
certFile = """{{ .CertContent }}"""
keyFile = """{{ .KeyContent }}"""