NGINX 설정이 되어 있는 계정인 경우의 문제는 다음과 같이 해결합니다. / php 기본 업로드 제한에 문제가 없다는 전제 입니다.
The error “413 – Request Entity Too Large” indicates that web server configured to restrict large file size. Nginx can be set to allow the maximum size of the client request body using client_max_body_size directive
다음 저희가 해결한 방법입니다. ::: 사용자별 할당시 참조내용
다음 폴더 위치의 해당 파일에 문구를 추가해 해결 했습니다.
/etc/nginx/conf.d
vim /users.conf <= 해당 파일에 아래 텍스트를 추가
client_max_body_size 2M;
" 413 – 요청 엔티티가 너무 큼 " 오류 는 웹 서버가 큰 파일 크기를 제한하도록 구성되었음을 나타냅니다. client_max_body_size지시문을 사용하여 클라이언트 요청 본문의 최대 크기를 허용하도록 Nginx를 설정할 수 있습니다 .
1M로 제한 있는 사항을 신규로 USER 마다 제한사항 넣어야 하지만
공통항목인 users.conf 항목에 기입을 통해 늘려 줄 수 있습니다.
=== 온라인에 해결 방법으로 올라온 내용을 추가로 공유합니다.
전체 설정시 추가내용
아래 위치의 파일을 수정 합니다./etc/nginx/nginx.conf
vi nginx.conf
해당 내용은 다음과 같습니다.
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
client_max_body_size 100M;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
위에 중간에 텍스트 내용을 추가 했습니다.
기타 지원 내용은
관련해서는 관리자에게 문의하세요.