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 - -