我最初在 Stack Overflow 上发布了此内容,然后才想起 SO 不适用于基于服务器的问题。
大家好,
当我尝试将文件上传到我的网站时,我收到 Nginx“413 请求实体太大”错误,但是在我的 nginx.conf 文件中,我已经明确指出最大大小目前约为 250MB,并且还在 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;
}
}
}
我这里遗漏了什么吗?
答案1
尝试将 client_max_body_size 移至服务器块内部。
答案2
如果您遇到此问题,即 client_max_body_size 似乎没有得到尊重,请确保所有网络流量经过的服务器都正确配置了此配置设置。就我而言,我配置了应用程序服务器,但忘记使用该设置配置负载平衡器。
答案3
您可能在多个位置或文件中进行设置client_max_body_size
。例如,配置的最后一行包含sites
目录中的所有配置文件:include /etc/nginx/sites/*
client_max_body_size
通过在 nginx 目录中运行此命令来查找所有出现的:
sudo grep -R 'client_max_body_size' ./*
如果您删除或更新所有这些情况,那么您应该会没事的。我遇到了同样的问题,并且绞尽脑汁想这可能是什么。
J.P