From 15accba43f8afccd8bb48e32625799e5dd3f7d54 Mon Sep 17 00:00:00 2001 From: kekskurse Date: Sun, 28 Apr 2024 22:39:18 +0200 Subject: [PATCH] client max body limit --- debian12-forgejo/templates/forgejo.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian12-forgejo/templates/forgejo.conf b/debian12-forgejo/templates/forgejo.conf index 665c4ee..1dcbc31 100644 --- a/debian12-forgejo/templates/forgejo.conf +++ b/debian12-forgejo/templates/forgejo.conf @@ -2,6 +2,8 @@ server { listen 80; server_name {{ domain }}; + client_max_body_size 500M; + location / { # Note: Trailing slash proxy_pass http://localhost:3000; # Note: Trailing slash }