From 681892148e54589a8aceece54e83ff7590be004e Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Mon, 6 May 2019 18:28:04 +0200 Subject: [PATCH] fix: typo in routing example. --- docs/content/routing/routers/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/routing/routers/index.md b/docs/content/routing/routers/index.md index 0f6d5f1ac..d6a5e9626 100644 --- a/docs/content/routing/routers/index.md +++ b/docs/content/routing/routers/index.md @@ -186,12 +186,12 @@ Traefik will terminate the SSL connections (meaning that it will send decrypted ```toml [http.routers] - [http.routers.Router-1-https] + [http.routers.my-https-router] rule = "Host(`foo-domain`) && Path(`/foo-path/`)" service = "service-id" - [http.routers.Router-1.tls] # will terminate the TLS request + [http.routers.my-https-router.tls] # will terminate the TLS request - [http.routers.Router-1-http] + [http.routers.my-http-router] rule = "Host(`foo-domain`) && Path(`/foo-path/`)" service = "service-id" ```