Skip to content

Commit

Permalink
chore: MultipartFile 업로드 크기 제한 30MB로 수정
Browse files Browse the repository at this point in the history
Related to: Issue #20
  • Loading branch information
eckrin committed Nov 22, 2023
1 parent 68b18c7 commit 1f5a192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ spring:
port: ${REDIS_PORT}
servlet:
multipart:
max-file-size: 12MB
max-request-size: 12MB
max-file-size: 30MB
max-request-size: 30MB

cloud:
aws:
Expand Down

0 comments on commit 1f5a192

Please sign in to comment.