본문 바로가기
Linux

NGINX - File Upload, Error 413 Request Entity Too Large

by 올엠 2020. 11. 12.
반응형

NGINX의 기본 Request 사이즈는 2 MB로 되어 있다.

따라서 NGINX를 이용해서 파일 업로드를 할 경우 사전에 Request 사이즈를 늘려 놓아야 한다. 

설정하는 방법은 간단하다. nginx의 환경 설정 파일의 http 설정에 넣어주면 된다.

sudo nano /etc/nginx/nginx.conf

nginx.conf에 client_max_body_size 4000M;를 추가하자.

http {
          client_max_body_size 4000M;

그후 서비스 적용을 위해 Reload를 진행하자.

sudo service nginx reload

 

참고

http://nginx.org/en/docs/http/ngx_http_core_module.html

 

Module ngx_http_core_module

Module ngx_http_core_module Directives Syntax: absolute_redirect on | off; Default: absolute_redirect on; Context: http, server, location This directive appeared in version 1.11.8. If disabled, redirects issued by nginx will be relative. See also server_na

nginx.org

 

반응형