From 0837ec9b70cfdf5011f8331a9a09e7f4cbcf0bbe Mon Sep 17 00:00:00 2001 From: Tiago Boeing Date: Tue, 31 Dec 2019 21:56:04 -0300 Subject: [PATCH] Fix command for use websecure via CLI --- docs/content/routing/entrypoints.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/content/routing/entrypoints.md b/docs/content/routing/entrypoints.md index 12283dcd7..41e824f96 100644 --- a/docs/content/routing/entrypoints.md +++ b/docs/content/routing/entrypoints.md @@ -41,7 +41,7 @@ They define the port which will receive the requests (whether HTTP or TCP). [entryPoints.web] address = ":80" - [entryPoints.web-secure] + [entryPoints.websecure] address = ":443" ``` @@ -51,18 +51,18 @@ They define the port which will receive the requests (whether HTTP or TCP). web: address: ":80" - web-secure: + websecure: address: ":443" ``` ```bash tab="CLI" ## Static configuration --entryPoints.web.address=:80 - --entryPoints.web-secure.address=:443 + --entryPoints.websecure.address=:443 ``` - - Two entrypoints are defined: one called `web`, and the other called `web-secure`. - - `web` listens on port `80`, and `web-secure` on port `443`. + - Two entrypoints are defined: one called `web`, and the other called `websecure`. + - `web` listens on port `80`, and `websecure` on port `443`. ## Configuration