設置nginx服務容許用戶最大上傳數據大小php
根據業務需求調整上傳文件大小限制node
設置參數 client_max_body_size 8m;nginx
參數語法 client_max_body_size 具體的大小值,默認1m;web
放置位置 http,server,location安全
在主配置文件nginx.conf中配置bash
[root@web01 ~]# cat /application/nginx/conf/nginx.conf worker_processes 2; worker_cpu_affinity 0101 1010; error_log logs/error.log; #配置Nginx worker進程最大打開文件數 worker_rlimit_nofile 65535; user www www; events { #單個進程容許的客戶端最大鏈接數 worker_connections 20480; #使用epoll模型 use epoll; } http { include mime.types; default_type application/octet-stream; #sendfile on; #keepalive_timeout 65; #訪問日誌配置 log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; #虛擬主機 include /application/nginx/conf/extra/www.conf; include /application/nginx/conf/extra/blog.conf; include /application/nginx/conf/extra/bbs.conf; include /application/nginx/conf/extra/edu.conf; include /application/nginx/conf/extra/phpmyadmin.conf; include /application/nginx/conf/extra/status.conf; #nginx優化---------------------- #隱藏版本號 server_tokens on; #優化服務器域名的散列表大小 server_names_hash_bucket_size 64; server_names_hash_max_size 2048; #開啓高效文件傳輸模式 sendfile on; #減小網絡報文段數量 #tcp_nopush on; #提升I/O性能 tcp_nodelay on; #鏈接超時 時間定義 默認秒 默認65秒 keepalive_timeout 60; #讀取客戶端請求頭數據的超時時間 默認秒 默認60秒 client_header_timeout 15; #讀取客戶端請求主體的超時時間 默認秒 默認60秒 client_body_timeout 15; #響應客戶端的超時時間 默認秒 默認60秒 send_timeout 25; #上傳文件的大小限制 默認1m client_max_body_size 8m; }