entrypoints -> entryPoints

This commit is contained in:
burningTyger 2017-10-30 13:20:03 +01:00 committed by Traefiker
parent da7b6f0baf
commit b27455a36f

View file

@ -118,10 +118,10 @@ Otherwise, the response from the auth server is returned.
```toml ```toml
[entryPoints] [entryPoints]
[entrypoints.http] [entryPoints.http]
# ... # ...
# To enable forward auth on an entrypoint # To enable forward auth on an entrypoint
[entrypoints.http.auth.forward] [entryPoints.http.auth.forward]
address = "https://authserver.com/auth" address = "https://authserver.com/auth"
# Trust existing X-Forwarded-* headers. # Trust existing X-Forwarded-* headers.
@ -136,7 +136,7 @@ Otherwise, the response from the auth server is returned.
# #
# Optional # Optional
# #
[entrypoints.http.auth.forward.tls] [entryPoints.http.auth.forward.tls]
cert = "authserver.crt" cert = "authserver.crt"
key = "authserver.key" key = "authserver.key"
``` ```