From 332c314d53d5ab0c66d35ebca82f1eaa06ed537a Mon Sep 17 00:00:00 2001 From: Benjamin Freeman Date: Thu, 2 Apr 2020 13:20:05 +0200 Subject: [PATCH] Fix bad address syntax in Global HTTP to HTTPS redirection v2 TOML --- docs/content/migration/v1-to-v2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/migration/v1-to-v2.md b/docs/content/migration/v1-to-v2.md index 6fbfeeb24..688da3dfb 100644 --- a/docs/content/migration/v1-to-v2.md +++ b/docs/content/migration/v1-to-v2.md @@ -370,13 +370,13 @@ To apply a redirection: ## static configuration [entryPoints.web] - address = 80 + address = ":80" [entryPoints.web.http.redirections.entryPoint] to = "websecure" scheme = "https" [entryPoints.websecure] - address = 443 + address = ":443" ``` ```yaml tab="File (YAML)"