Skip to content

Commit

Permalink
refactor: deploy 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
xxoznge committed Oct 2, 2024
1 parent a763334 commit 6f7cbe3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
cp build/libs/*.jar deploy/application.jar
cp Procfile deploy/Procfile
cp -r .ebextensions-dev deploy/.ebextensions
cp -r .platform deploy/.platform
cd deploy && zip -r deploy.zip .
- name: Beanstalk Deploy
Expand Down
2 changes: 1 addition & 1 deletion .platform/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;

client_max_body_size 20M;
client_max_body_size 100M;


log_format main '$remote_addr - $remote_user [$time_local] "$request" '
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spring:

servlet:
multipart:
max-file-size: 20MB
max-request-size: 20MB
max-file-size: 100MB
max-request-size: 100MB


0 comments on commit 6f7cbe3

Please sign in to comment.