From f12a6c34ccc8fc320fed2b347430ad3d6555e434 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Wed, 22 Feb 2023 15:28:20 -0500 Subject: [PATCH] Remove forced redirectino from http to https This can be configured per router in Traefik 2.0 c.f. https://doc.traefik.io/traefik/v2.0/migration/v1-to-v2/#http-to-https-redirection-is-now-configured-on-routers --- traefik.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/traefik.toml b/traefik.toml index 71e297e..d36240c 100644 --- a/traefik.toml +++ b/traefik.toml @@ -1,11 +1,6 @@ [entryPoints] [entryPoints.http] address = ":80" - [entryPoints.http.http] - [entryPoints.http.http.redirections] - [entryPoints.http.http.redirections.entryPoint] - to = "https" - scheme = "https" [entryPoints.https] address = ":443" [entryPoints.https.http2]