File size (1) 썸네일형 리스트형 Nginx: 413 Request Entity Too Large # file size 이미지 파일 등을 올릴 때 Nginx에서 정한 사이즈보다 큰 경우에 나타나는 에러 문구 /etc/nginx/nginx.conf 또는 /etc/nginx/sites-available/default 에서 설정을 바꿔보자 client_max_body_size 50m; 50 메가 바이트까지 파일의 크기를 올릴 수 있게 지정 아래와 같이 특정 loation에 대해 client_max_body_size도 별도로 설정 가능 http { # Global Nginx settings client_max_body_size 50m; # Set the maximum body size for all servers server { listen 80; server_name example.com; # Set the maximum bo.. 이전 1 다음