Merge pull request #108 from JefferyHcool/feature/kuaishou

feat(nginx): 调整客户端请求体大小限制
This commit is contained in:
Jianwu Huang
2025-05-15 11:35:13 +08:00
committed by GitHub

View File

@@ -1,6 +1,7 @@
server {
listen 80;
client_max_body_size 10G;
client_body_buffer_size 128k;
# 所有非 /api 请求全部代理给 frontend 容器
location / {
proxy_pass http://frontend:80;