From 1b0635083d5a901fd7b327e6e2c4c78100f1a6db Mon Sep 17 00:00:00 2001 From: xxoznge <20201049@sungshin.ac.kr> Date: Wed, 2 Oct 2024 21:25:19 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20deploy=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .platform/nginx.conf | 3 +++ src/main/resources/application.yml | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.platform/nginx.conf b/.platform/nginx.conf index 36a524e..45c4935 100644 --- a/.platform/nginx.conf +++ b/.platform/nginx.conf @@ -38,6 +38,9 @@ http { location / { proxy_pass http://springboot; + proxy_buffering off; + proxy_read_timeout 300; + proxy_send_timeout 300; # CORS 관련 헤더 추가 add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS'; diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 1caf695..620af22 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -9,5 +9,3 @@ spring: multipart: max-file-size: 100MB max-request-size: 100MB - -