From e70c8a7b461a57a2c7bbafb1895258b54d7e5135 Mon Sep 17 00:00:00 2001 From: MycTl <1701653+MycTl@users.noreply.github.com> Date: Mon, 16 Sep 2019 16:36:03 +0200 Subject: [PATCH] Fix error in the documentation for CLI configuration example --- docs/content/https/acme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/https/acme.md b/docs/content/https/acme.md index 7a03295ae..02dec23cb 100644 --- a/docs/content/https/acme.md +++ b/docs/content/https/acme.md @@ -50,10 +50,10 @@ You can configure Traefik to use an ACME provider (like Let's Encrypt) for autom --entryPoints.web.address=":80" --entryPoints.websecure.address=":443" # ... - --certificatesResolvers.sample.acme.email: your-email@your-domain.org - --certificatesResolvers.sample.acme.storage: acme.json + --certificatesResolvers.sample.acme.email="your-email@your-domain.org" + --certificatesResolvers.sample.acme.storage="acme.json" # used during the challenge - --certificatesResolvers.sample.acme.httpChallenge.entryPoint: web + --certificatesResolvers.sample.acme.httpChallenge.entryPoint=web ``` ??? note "Configuration Reference"