From 4a1e39bcd45efb63a9cb69e9d6ced148b5919a93 Mon Sep 17 00:00:00 2001 From: A Holt Date: Fri, 3 Jan 2020 10:49:29 -0500 Subject: [PATCH] Gitea/NGINX fix for #2057 404s --- roles/gitea/templates/gitea-nginx.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/gitea/templates/gitea-nginx.conf.j2 b/roles/gitea/templates/gitea-nginx.conf.j2 index 2545a3f86..7276bd543 100644 --- a/roles/gitea/templates/gitea-nginx.conf.j2 +++ b/roles/gitea/templates/gitea-nginx.conf.j2 @@ -1,3 +1,3 @@ location {{ gitea_url }}/ { - proxy_pass http://127.0.0.1:{{ gitea_port }}; + proxy_pass http://127.0.0.1:{{ gitea_port }}/; }