fix ForwardAuth tls.skipverify examples

This commit is contained in:
remche 2019-10-18 11:50:05 +02:00 committed by Traefiker Bot
parent 3884a68889
commit d1c3372dc4

View file

@ -474,7 +474,8 @@ metadata:
spec:
forwardAuth:
address: https://authserver.com/auth
insecureSkipVerify: true
tls:
insecureSkipVerify: true
```
```json tab="Marathon"
@ -492,7 +493,8 @@ labels:
[http.middlewares]
[http.middlewares.test-auth.forwardAuth]
address = "https://authserver.com/auth"
insecureSkipVerify: true
[http.middlewares.test-auth.forwardAuth.tls]
insecureSkipVerify: true
```
```yaml tab="File (YAML)"
@ -501,5 +503,6 @@ http:
test-auth:
forwardAuth:
address: "https://authserver.com/auth"
insecureSkipVerify: true
tls:
insecureSkipVerify: true
```