From cbdbeb790bc6d8736068f5bf3850fe38cc4172d8 Mon Sep 17 00:00:00 2001 From: Chi Cuong HA Date: Fri, 30 Jun 2023 23:06:55 +0200 Subject: [PATCH] Fix redirect port when route_tls_termination_mechanism: passthrough (#1475) Fixes #1474 --- roles/installer/templates/configmaps/config.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/installer/templates/configmaps/config.yaml.j2 b/roles/installer/templates/configmaps/config.yaml.j2 index d8c2bb21..42ad308b 100644 --- a/roles/installer/templates/configmaps/config.yaml.j2 +++ b/roles/installer/templates/configmaps/config.yaml.j2 @@ -135,7 +135,7 @@ data: server_name _; # Redirect all HTTP links to the matching HTTPS page - return 301 https://$host$request_uri; + return 301 https://$host:8053$request_uri; } {% endif %}