我知道这已经被问过好几次了,但我无法让它在我的配置中工作。尝试上传大于默认 nginx 值client_max_body_size
with 为 1 MB 的文件时出现 413 错误。
这是我的配置:
nginx.conf:
http {
client_max_body_size 500M;
limit_req_status 429;
limit_conn_status 429;
limit_req_zone $binary_remote_addr zone=worktoday:40m rate=10r/s;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
mysite.com:
server {
client_max_body_size 500M;
listen 80;
location / {
client_max_body_size 500M;
proxy_pass http://backend;
proxy_set_header Host $host;
}
}
upstream backend {
client_max_body_size 500M;
least_conn;
server 172.16.10.10;
server 172.16.10.12;
}
我尝试了所有组合,放入client_max_body_size
所有位置(如现在),仅在某些位置,将其设置为 0(禁用任何限制)等。
我急于解决这个问题。
在 nginx 后面有一个使用 gunicorn 运行的烧瓶应用程序。我已经单独尝试了该应用程序(前面没有 nginx)并且它可以工作。
我真的很感谢这里的任何帮助,谢谢。