Fix hub tls documentation

This commit is contained in:
Jean-Baptiste Doumenjou 2022-03-25 15:42:08 +01:00 committed by GitHub
parent a4560fa20d
commit c0b0f3f0f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,7 +194,7 @@ The TLS certificate for Traefik Proxy as a TLS client.
```yaml tab="File (YAML)"
hub:
tls:
ca: |-
cert: |-
-----BEGIN CERTIFICATE-----
MIIBcjCCARegAwIBAgIQaewCzGdRz5iNnjAiEoO5AzAKBggqhkjOPQQDAjASMRAw
DgYDVQQKEwdBY21lIENvMCAXDTIyMDMyMTE2MTY0NFoYDzIxMjIwMjI1MTYxNjQ0
@ -281,14 +281,15 @@ The `insecure` option is mutually exclusive with any other option.
```yaml tab="File (YAML)"
hub:
insecure: true
tls:
insecure: true
```
```toml tab="File (TOML)"
[hub]
[hub.tls]
insecure = true
```
```bash tab="CLI"
--hub.insecure=true
--hub.tls.insecure=true
```