From 19a2f3723705851fee11717eb4663cea90b99a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=84=B1=EC=A4=80?= Date: Sat, 9 Aug 2025 20:05:27 +0900 Subject: [PATCH] =?UTF-8?q?[REFACTOR]=20Nginx=20'client=5Fmax=5Fbody=5Fsiz?= =?UTF-8?q?e'=2020MB=EB=A1=9C=20=EC=84=A4=EC=A0=95=20#97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .platform/nginx/conf.d/client-size-timeout.conf | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .platform/nginx/conf.d/client-size-timeout.conf diff --git a/.platform/nginx/conf.d/client-size-timeout.conf b/.platform/nginx/conf.d/client-size-timeout.conf new file mode 100644 index 0000000..5abb446 --- /dev/null +++ b/.platform/nginx/conf.d/client-size-timeout.conf @@ -0,0 +1,4 @@ +client_max_body_size 20m; # 업로드 최대 용량 +client_body_timeout 120s; # 업로드 타임아웃 +proxy_read_timeout 120s; # 백엔드 응답 대기 +proxy_send_timeout 120s; # 백엔드로 전송 대기 \ No newline at end of file