1
0
Fork 0

Use the same case every where for entryPoints.

This commit is contained in:
Ludovic Fernandez 2019-04-15 11:14:05 +02:00 committed by Traefiker Bot
parent b9f826554c
commit 8389b46b5c
74 changed files with 248 additions and 248 deletions

View file

@ -5,8 +5,8 @@ sendAnonymousUsage = false
[log]
logLevel = "DEBUG"
[entrypoints]
[entrypoints.tcp]
[entryPoints]
[entryPoints.tcp]
address = ":8093"
[api]
@ -21,7 +21,7 @@ logLevel = "DEBUG"
entrypoint=["tcp"]
[http.routers.my-https-router]
entrypoints=["tcp"]
entryPoints=["tcp"]
rule = "Path(`/whoami/`)"
service = "whoami"
[http.routers.my-https-router.tls]
@ -36,21 +36,21 @@ logLevel = "DEBUG"
[tcp.routers.to-whoami-a]
rule = "HostSNI(`whoami-a.test`)"
service = "whoami-a"
entrypoints = [ "tcp" ]
entryPoints = [ "tcp" ]
[tcp.routers.to-whoami-a.tls]
passthrough=true
[tcp.routers.to-whoami-b]
rule = "HostSNI(`whoami-b.test`)"
service = "whoami-b"
entrypoints = [ "tcp" ]
entryPoints = [ "tcp" ]
[tcp.routers.to-whoami-b.tls]
passthrough=true
[tcp.routers.to-whoami-no-cert]
rule = "HostSNI(`whoami-c.test`)"
service = "whoami-no-cert"
entrypoints = [ "tcp" ]
entryPoints = [ "tcp" ]
[tcp.routers.to-whoami-no-cert.tls]
[tcp.services.whoami-a]

View file

@ -5,8 +5,8 @@ sendAnonymousUsage = false
[log]
logLevel = "DEBUG"
[entrypoints]
[entrypoints.tcp]
[entryPoints]
[entryPoints.tcp]
address = ":8093"
[api]
@ -18,25 +18,25 @@ logLevel = "DEBUG"
[tcp.routers.to-whoami-a]
rule = "HostSNI(`whoami-a.test`)"
service = "whoami-a"
entrypoints = [ "tcp" ]
entryPoints = [ "tcp" ]
[tcp.routers.to-whoami-a.tls]
passthrough=true
[tcp.routers.to-whoami-b]
rule = "HostSNI(`whoami-b.test`)"
service = "whoami-b"
entrypoints = [ "tcp" ]
entryPoints = [ "tcp" ]
[tcp.routers.to-whoami-b.tls]
passthrough=true
[tcp.routers.to-whoami-no-cert]
rule = "HostSNI(`whoami-c.test`)"
service = "whoami-no-cert"
entrypoints = [ "tcp" ]
entryPoints = [ "tcp" ]
[tcp.routers.to-whoami-no-cert.tls]
[tcp.routers.to-whoami-no-tls]
entrypoints = ["tcp"]
entryPoints = ["tcp"]
rule="HostSNI(`*`)"
service = "whoami-no-tls"

View file

@ -5,8 +5,8 @@ sendAnonymousUsage = false
[log]
logLevel = "DEBUG"
[entrypoints]
[entrypoints.tcp]
[entryPoints]
[entryPoints.tcp]
address = ":8093"
[api]
@ -16,7 +16,7 @@ logLevel = "DEBUG"
[tcp]
[tcp.routers]
[tcp.routers.to-whoami-no-tls]
entrypoints = ["tcp"]
entryPoints = ["tcp"]
rule="HostSNI(`*`)"
service = "whoami-no-tls"