Nginx request size 변경하기

jw·2020년 10월 6일
1

처음 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;
        ...
}

해결완료 😁

profile
개발 공부중입니다!

0개의 댓글