diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-24 17:30:10 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-24 17:30:10 +0800 |
commit | 46e66fefdf1affe6062ab498a28d766ef0e5d0c3 (patch) | |
tree | c73ff161ac4c799d8811a7982d3fa10065b1f577 | |
parent | 7e54b1ebe280d760347b1b640c9d4d0038ca6c58 (diff) | |
download | crupest-46e66fefdf1affe6062ab498a28d766ef0e5d0c3.tar.gz crupest-46e66fefdf1affe6062ab498a28d766ef0e5d0c3.tar.bz2 crupest-46e66fefdf1affe6062ab498a28d766ef0e5d0c3.zip |
fix(git): inrease request body size limit.
-rw-r--r-- | services/templates/nginx/conf.d/root.conf.template | 1 |
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; } |