Fix error in the documentation for CLI configuration example

This commit is contained in:
MycTl 2019-09-16 16:36:03 +02:00 committed by Traefiker Bot
parent 673351d821
commit e70c8a7b46

View file

@ -50,10 +50,10 @@ You can configure Traefik to use an ACME provider (like Let's Encrypt) for autom
--entryPoints.web.address=":80" --entryPoints.web.address=":80"
--entryPoints.websecure.address=":443" --entryPoints.websecure.address=":443"
# ... # ...
--certificatesResolvers.sample.acme.email: your-email@your-domain.org --certificatesResolvers.sample.acme.email="your-email@your-domain.org"
--certificatesResolvers.sample.acme.storage: acme.json --certificatesResolvers.sample.acme.storage="acme.json"
# used during the challenge # used during the challenge
--certificatesResolvers.sample.acme.httpChallenge.entryPoint: web --certificatesResolvers.sample.acme.httpChallenge.entryPoint=web
``` ```
??? note "Configuration Reference" ??? note "Configuration Reference"