From a7847ea2c042604288ab5b7ae78937842ca06c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=99=8D=EB=8B=A4=EC=97=B0?= <95288297+Dayon-Hong@users.noreply.github.com> Date: Fri, 7 Jun 2024 21:17:18 +0900 Subject: [PATCH] Hotfix/sale done (#68) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * hotfix : 구매 유저가 Null 이어도 구매 가능하도록 상태 변경 * hotfix : file size * hotfix : nginx 수동 설정 테스트 1 - 요청 body 사이즈 변경 * hotfix : nignx 설정 테스트2 --- .ebextensions/00-makeFiles.config | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.ebextensions/00-makeFiles.config b/.ebextensions/00-makeFiles.config index 9309315..281e39d 100644 --- a/.ebextensions/00-makeFiles.config +++ b/.ebextensions/00-makeFiles.config @@ -8,4 +8,11 @@ files: # Elastic Beanstalk에 필요한 파일들을 생성하거나 수정하 # run app killall java # 현재 실행 중인 모든 java 프로세스를 종료 - java -Dfile.encoding=UTF-8 -Dspring.profiles.active=prod -jar $JAR_PATH # UTF-8 인코딩과 prod 프로파일로 애플리케이션 JAR 파일 실행 \ No newline at end of file + java -Dfile.encoding=UTF-8 -Dspring.profiles.active=prod -jar $JAR_PATH # UTF-8 인코딩과 prod 프로파일로 애플리케이션 JAR 파일 실행 + + "/etc/nginx/conf.d/proxy.conf": + mode: "000644" + owner: root + group: root + content: | + client_max_body_size 50M;