aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-24 17:30:10 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-24 17:30:10 +0800
commitdc7b27c713351066e20947ea6d1adb80aeb68d9f (patch)
tree19d4af25de566abc8ead2c04da4122b0b15c6e6d
parent90868bf85dc295f70620dbcbd5790999fe239550 (diff)
downloadcrupest-dc7b27c713351066e20947ea6d1adb80aeb68d9f.tar.gz
crupest-dc7b27c713351066e20947ea6d1adb80aeb68d9f.tar.bz2
crupest-dc7b27c713351066e20947ea6d1adb80aeb68d9f.zip
fix(git): inrease request body size limit.
-rw-r--r--services/templates/nginx/conf.d/root.conf.template1
1 files changed, 1 insertions, 0 deletions
diff --git a/services/templates/nginx/conf.d/root.conf.template b/services/templates/nginx/conf.d/root.conf.template
index 8cd9174..3ea97d9 100644
--- a/services/templates/nginx/conf.d/root.conf.template
+++ b/services/templates/nginx/conf.d/root.conf.template
@@ -13,6 +13,7 @@ server {
location /git/ {
include common/proxy-common;
+ client_max_body_size 5G;
proxy_pass http://git-server:80;
}