From 170bcd24c55d9376f2ef00650012b873fbfcb468 Mon Sep 17 00:00:00 2001 From: Mork Swork Date: Thu, 14 May 2026 14:34:10 -0700 Subject: [PATCH] Fix forgejo rq size --- nixos/nginx.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/nginx.nix b/nixos/nginx.nix index 4a7b39c..661a4c4 100644 --- a/nixos/nginx.nix +++ b/nixos/nginx.nix @@ -175,6 +175,10 @@ enableACME = true; onlySSL = true; + extraConfig = '' + client_max_body_size 0; + ''; + locations."/" = { proxyPass = "http://127.0.0.1:3000/"; # pass through to Forgejo };