From c0b0f3f0f7b2977317c7b33a2c0213b1d0047cd0 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Doumenjou <925513+jbdoumenjou@users.noreply.github.com> Date: Fri, 25 Mar 2022 15:42:08 +0100 Subject: [PATCH] Fix hub tls documentation --- docs/content/traefik-hub/index.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/content/traefik-hub/index.md b/docs/content/traefik-hub/index.md index a784f2c0b..d6fa92dfe 100644 --- a/docs/content/traefik-hub/index.md +++ b/docs/content/traefik-hub/index.md @@ -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 ```