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)" ```yaml tab="File (YAML)"
hub: hub:
tls: tls:
ca: |- cert: |-
-----BEGIN CERTIFICATE----- -----BEGIN CERTIFICATE-----
MIIBcjCCARegAwIBAgIQaewCzGdRz5iNnjAiEoO5AzAKBggqhkjOPQQDAjASMRAw MIIBcjCCARegAwIBAgIQaewCzGdRz5iNnjAiEoO5AzAKBggqhkjOPQQDAjASMRAw
DgYDVQQKEwdBY21lIENvMCAXDTIyMDMyMTE2MTY0NFoYDzIxMjIwMjI1MTYxNjQ0 DgYDVQQKEwdBY21lIENvMCAXDTIyMDMyMTE2MTY0NFoYDzIxMjIwMjI1MTYxNjQ0
@ -281,14 +281,15 @@ The `insecure` option is mutually exclusive with any other option.
```yaml tab="File (YAML)" ```yaml tab="File (YAML)"
hub: hub:
tls:
insecure: true insecure: true
``` ```
```toml tab="File (TOML)" ```toml tab="File (TOML)"
[hub] [hub.tls]
insecure = true insecure = true
``` ```
```bash tab="CLI" ```bash tab="CLI"
--hub.insecure=true --hub.tls.insecure=true
``` ```