Skip to content

Commit

Permalink
[REFACTOR] S3 이미지 업로드 크기 제한 조정 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyukong authored Feb 27, 2024
1 parent 6dd90f6 commit cbf83bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/oya/kr/global/config/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void configureMessageConverters(List<HttpMessageConverter<?>> converters)
@Bean
public MultipartResolver multipartResolver() {
CommonsMultipartResolver resolver = new CommonsMultipartResolver();
resolver.setMaxUploadSize(100000); // 최대 업로드 크기 설정
resolver.setMaxUploadSize(10000000); // 최대 업로드 크기 설정
return resolver;
}

Expand Down

0 comments on commit cbf83bb

Please sign in to comment.