We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d35d4e commit 697b0bcCopy full SHA for 697b0bc
1 file changed
src/main/resources/application.yml
@@ -1,6 +1,9 @@
1
server:
2
port: 8080
3
forward-headers-strategy: native
4
+ # Post body 크기 100MB 설정
5
+ tomcat:
6
+ max-http-form-post-size: 100MB
7
spring:
8
# redis가 개발/테스트 환경에서 작동하지 않도록 설정
9
autoconfigure:
@@ -99,6 +102,11 @@ spring:
99
102
timeout: 5000
100
103
writetimeout: 5000
101
104
default-encoding: UTF-8
105
+ # 파일 업로드 용량 설정
106
+ servlet:
107
+ multipart:
108
+ max-file-size: 100MB
109
+ max-request-size: 100MB
110
111
# Frontend URL (OAuth2 리다이렉트용, UTM 링크 생성용)
112
app:
0 commit comments