1
0
Fork 0

Add helloworld tests with gRPC

This commit is contained in:
SALLEYRON Julien 2017-08-06 11:55:42 +02:00 committed by Ludovic Fernandez
parent 8071f31721
commit 990ee89650
8 changed files with 370 additions and 0 deletions

View file

@ -0,0 +1,29 @@
defaultEntryPoints = ["https"]
RootCAs = [ """{{ .CertContent }}""" ]
[entryPoints]
[entryPoints.https]
address = ":4443"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
CertFile = """{{ .CertContent }}"""
KeyFile = """{{ .KeyContent }}"""
[web]
address = ":8080"
[file]
[backends]
[backends.backend1]
[backends.backend1.servers.server1]
url = "https://127.0.0.1:{{ .GRPCServerPort }}"
[frontends]
[frontends.frontend1]
backend = "backend1"
[frontends.frontend1.routes.test_1]
rule = "Host:127.0.0.1"