From 6cb837fe764a137c2e97addc96f9f15212b4ae88 Mon Sep 17 00:00:00 2001 From: Tyler Starr Date: Mon, 14 Oct 2024 15:57:19 -0700 Subject: [PATCH] fix large push/pulls with gitea --- provision/hosts/torus/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/provision/hosts/torus/configuration.nix b/provision/hosts/torus/configuration.nix index 00de1274..8e1dbb4a 100644 --- a/provision/hosts/torus/configuration.nix +++ b/provision/hosts/torus/configuration.nix @@ -70,6 +70,9 @@ }); "git.tstarr.us" = (SSL // { locations."/".proxyPass = "http://localhost:3001/"; + extraConfig = '' + client_max_body_size 3000m; + ''; }); "workspace.tstarr.us" = (SSL // { locations."/".proxyPass = "http://localhost:5000/";