공식 문서에 따르면 nginx 구성 파일의 http, server, location 및 기타 구성 블록에 client_max_body_size 크기를 추가하여 클라이언트가 업로드할 수 있는 파일의 본문 크기를 조정할 수 있습니다. 0으로 설정하면 제한이 없음을 나타냅니다.
(추천 튜토리얼: nginx 사용법 튜토리얼)
nginx 기본 클라이언트 본체 크기는 1M입니다.
구체적인 구성은 다음과 같습니다.
http { 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; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; client_max_body_size 100m; .... }
위 내용은 nginx 업로드 파일 크기 구성 수정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!