처음 nginx를 사용했을 때 body size를 기본값에서 수정하지 않아
파일업로드에 오류가 생겼었다.
client_max_body_size
directive를 설정해준다.
nginx의 client_max_body_size
directive의 default 값은 1M(1메가바이트) 이다.
이 때 업로드 파일을 포함한 요청 사이즈가 1메가바이트를 넘으면 413 (Request Entity Too Large) 에러를 반환한다.
client_max_body_size
를 수정해준다.
ex)
server {
...
client_max_body_size 20M;
...
}