Developer/모아두기

[Nginx] nginx error – 413 Request Entity Too Large

LeeJaeng 2016. 6. 22. 12:07
Nginx를 통해 파일 업로드를 할 때


nginx error – 413 Request Entity Too Large

라는 에러가 뜰 때가 있다.

업로드 용량이 처음에는 default로 1mb가 잡혀있기 때문에 그것을 늘려야 더 큰 용량을 업로드 할 수 있다. 


/etc/nginx/nginx.conf 에서

http {
     server {
          client_max_body_size 20M;
     }
}

이런식으로 client_max_body_size를 더 늘려주면 된다.