From f41ab0d25127e34f1228572981e35f0111c796f6 Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Thu, 25 Sep 2025 16:52:38 +0200 Subject: [PATCH] [dashboard] Fix /docs redirect Signed-off-by: Andrei Kvapil --- packages/system/dashboard/templates/nginx-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/system/dashboard/templates/nginx-config.yaml b/packages/system/dashboard/templates/nginx-config.yaml index 2f8ad543..04c55723 100644 --- a/packages/system/dashboard/templates/nginx-config.yaml +++ b/packages/system/dashboard/templates/nginx-config.yaml @@ -55,14 +55,14 @@ data: proxy_pass http://incloud-web-web.{{ .Release.Namespace }}.svc:64231; } - location = / { - return 301 https://dashboard.{{ $host }}/openapi-ui; - } - location = /docs { return 301 https://cozystack.io/docs/; } + location = / { + return 301 https://dashboard.{{ $host }}/openapi-ui; + } + location / { proxy_pass http://incloud-web-web.{{ .Release.Namespace }}.svc:8080; }