From 8e86e2f8d50cf0e2515edad365945c09b47acaaf Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 8 Apr 2025 12:36:25 -0400 Subject: [PATCH] Infini-DL360/forgejo: disable upload limits --- hosts/Infini-DL360/forgejo.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/Infini-DL360/forgejo.nix b/hosts/Infini-DL360/forgejo.nix index f900003..4e132a2 100644 --- a/hosts/Infini-DL360/forgejo.nix +++ b/hosts/Infini-DL360/forgejo.nix @@ -107,6 +107,8 @@ in proxyPass = "http://${cfg.settings.server.DOMAIN}:${toString cfg.settings.server.HTTP_PORT}"; extraConfig = '' access_log /var/log/nginx/access.log combined if=$forgejo_access_log; + client_max_body_size 0; + proxy_request_buffering off; ''; }; };