클라이언트에서 파일 업로드를 수행할 경우 파일 용량 제한에 에러가 발생했다.
vim /etc/nginx/nginx.conf
http {
# Set client upload size - 100Mbyte
client_max_body_size 10M;
...
..
.
}
nginx -s reload
또는
service nginx restart
https://kkambi.tistory.com/218
spring:
servlet:
multipart:
max-file-size: 5MB
max-request-size: 5MB