From 4fde8d58e5428dae71c0101629ac0540c93c72b0 Mon Sep 17 00:00:00 2001 From: Abhinav Sarkar Date: Sun, 30 Sep 2018 15:52:20 +0000 Subject: [PATCH] Increases client max body size for gitea --- nginx-conf/gitea.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx-conf/gitea.conf b/nginx-conf/gitea.conf index f17bfdd..df33ac6 100644 --- a/nginx-conf/gitea.conf +++ b/nginx-conf/gitea.conf @@ -15,6 +15,8 @@ server { proxy_pass http://gitea:3000; } + client_max_body_size 10M; + # Block Bad Bots if ($bad_bot) { return 403; }