Skip to content

Commit

Permalink
CI/CD: multipart file size ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
yxhwxn committed Jun 2, 2024
1 parent 9b1c2e4 commit 82d1dfc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .platform/nginx/client_max_body_size.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
client_max_body_size 200M;
7 changes: 6 additions & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ spring:
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
driver-class-name: ${DB_DRIVER}

jpa:
hibernate:
ddl-auto: update
Expand All @@ -14,6 +13,12 @@ spring:
show_sql: true
format_sql: true

# multipart ํŒŒ์ผ ์šฉ๋Ÿ‰ ๋Š˜๋ ค์ฃผ๋Š” ๋ถ€๋ถ„
servlet:
multipart:
max-file-size: 200MB
max-request-size: 300MB

logging:
level:
root: INFO
Expand Down

0 comments on commit 82d1dfc

Please sign in to comment.