From 12808f0c390889d409daf2a15ef52b91b8e373ce Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Fri, 23 Jan 2026 14:07:20 -0500 Subject: [PATCH] fi(gitea): add redirect for /v3/ and /v3 --- etc/nginx/conf.d/dev/git-http.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etc/nginx/conf.d/dev/git-http.conf b/etc/nginx/conf.d/dev/git-http.conf index c9cf7ff..f13cd85 100644 --- a/etc/nginx/conf.d/dev/git-http.conf +++ b/etc/nginx/conf.d/dev/git-http.conf @@ -103,6 +103,9 @@ server { location = /v3 { return 302 /; } + location = /v3/ { + return 302 /; + } # ---------------------------------------------------------------------- # Version 3: Gitea (Full Server with Backend, Main) -- 2.52.0