From ea4d89eedc25d0e6b82cecec10c8bed96cfb5048 Mon Sep 17 00:00:00 2001 From: asyncnomi Date: Mon, 23 Jun 2025 22:35:37 +0200 Subject: [PATCH] increase client body limit to 1GB --- profiles/forgejo.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profiles/forgejo.nix b/profiles/forgejo.nix index 0e7a521..b5a51f0 100644 --- a/profiles/forgejo.nix +++ b/profiles/forgejo.nix @@ -116,6 +116,9 @@ in enableACME = true; forceSSL = true; locations."/".proxyPass = "http://localhost:3000"; + extraConfig = '' + client_max_body_size 1G; + ''; }; }; };