From 45dc4124a35ecad8509c571f531ba79fa629b3b5 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Tue, 22 Oct 2024 16:13:01 +0200 Subject: [PATCH] Remove exception to fetch task endpoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It causes the request to go to the website rather than the Gitea service. Reviewed-by: Aleix Boné --- m/hut/nginx.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/m/hut/nginx.nix b/m/hut/nginx.nix index 5a472e7..4e77eb2 100644 --- a/m/hut/nginx.nix +++ b/m/hut/nginx.nix @@ -37,10 +37,6 @@ in proxy_pass http://127.0.0.1:3000; proxy_redirect http:// $scheme://; } - # Ignore logging the gitea CI requesting tasks all the time - location /git/api/actions/runner.v1.RunnerService/FetchTask { - access_log off; - } location /cache { rewrite ^/cache(.*) /$1 break; proxy_pass http://127.0.0.1:5000;