From f9d4a70791f24f1dc79908ed6bdfb0e629db5fb1 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 17 Sep 2025 12:19:56 +0200 Subject: [PATCH] Increase body to 64 MiB for Gitea LFS --- m/tent/nginx.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/m/tent/nginx.nix b/m/tent/nginx.nix index de9214e7..ec6c34bb 100644 --- a/m/tent/nginx.nix +++ b/m/tent/nginx.nix @@ -39,6 +39,7 @@ in rewrite ^/git/(.*) /$1 break; proxy_pass http://127.0.0.1:3000; proxy_redirect http:// $scheme://; + client_max_body_size 64M; } location /cache { rewrite ^/cache/(.*) /$1 break;