현재 WAS 는 nginx를 거쳐 spring boot 서버로 요청이 가게 되어있다.
기본 이미지 관련 설정
nginx: client_max_body_size 라는 값으로 기본적으로 1MB로 설정되어 있다.
spring boot: spring.servlet.multipart.max-file-size: 1MB 로 설정되어 있다.
요즘 간단한 프로필이미지라도 1MB는 너무 작기에 각각 10MB로 설정해주었다.
nginx, nginx.conf 파일
http {
client_max_body_size 10M;
spring boot, application.yml 파일
spring:
servlet:
multipart:
max-file-size: 10MB