当我尝试将文件上传到我的网站时,我收到Nginx“413 Request Entity Too Large”错误,但是在我的nginx.conf文件中,我已经明确声明最大大小为250MB at at当下,并改变了php.ini中的最大文件大小(是的,我重新启动了进程)。错误日志给了我这个:
2010/12/06 04:15:06 [错误] 20124#0: * 11975客户端意图发送太大的身体:1144149字节,客户端: 60.228.229.238,服务器:www.x.com,请求:“POST / upload HTTP / 1.1“,主持人: “x.com”,推荐人: “http://x.com/”
据我所知,1144149字节不是250MB ...... 这里有什么我想念的吗?
这是基本的Nginx配置:
user nginx;
worker_processes 8;
worker_rlimit_nofile 100000;
error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
use epoll;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
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;
client_max_body_size 300M;
tcp_nopush on;
tcp_nodelay on;
server_tokens off;
gzip on;
gzip_static on;
gzip_comp_level 5;
gzip_min_length 1024;
keepalive_timeout 300;
limit_zone myzone $binary_remote_addr 10m;
# Load config files from the /etc/nginx/conf.d directory
include /etc/nginx/sites/*;
}
该网站的虚拟主机:
server {
listen 80;
server_name www.x.com x.com;
access_log /var/log/nginx/x.com-access.log;
location / {
index index.html index.htm index.php;
root /var/www/x.com;
if (!-e $request_filename) {
rewrite ^/([a-z,0-9]+)$ /$1.php last;
rewrite ^/file/(.*)$ /file.php?file=$1;
}
location ~ /engine/.*\.php$ {
return 404;
}
location ~ ^/([a-z,0-9]+)\.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}
答案 0 :(得分:15)
不知道你的nginx版本的版本以及它构建的模块使这很难,但请尝试以下方法:
复制client_max_body_size 300M;进入vhost配置的位置/ {}部分。我不确定它是否正确覆盖了默认值(即1 MB)。
您使用的是nginx_upload_module吗?如果是这样,请确保upload_max_file_size为300MB;你的配置也行。
答案 1 :(得分:2)
我的设置是:
的php.ini
...
upload_max_filesize = 8M
...
nginx.conf
...
client_max_body_size 8m;
...
nginx在上传时显示错误413.
然后我有了一个想法:我不会让nginx显示错误413,client_max_body_size设置为大于upload_max_filesize的值,因此:
的php.ini
...
upload_max_filesize = 8M
...
nginx.conf
...
client_max_body_size 80m;
...
发生了什么事?
当你上传小于80MB的nginx时,不会显示错误413,但如果文件高达8MB,PHP将显示错误。
这解决了我的问题,但如果有人上传大于80MB的文件,则会发生错误413,nginx规则。
答案 2 :(得分:-1)
我还补充说你可以在* .php位置处理程序
中定义它location ~ ^/([a-z,0-9]+)\.php$ {
作为级联级别中的“低级”,可以很容易地查看问题是否来自您的nginx配置或模块。
肯定不是来自PHP,因为413错误“正文太大”实际上是NGinx错误。