gpt4 book ai didi

python-2.7 - Nginx:413 实体太大 - 文件未到达应用程序

转载 作者:行者123 更新时间:2023-12-04 14:46:39 25 4
gpt4 key购买 nike

我正在使用 Nginxuwsgi使用 wsgi 应用程序。当我尝试上传图像时,有时应用程序无法获取图像,并且曾经出现错误 413 entity too large .

我通过添加 client_max_body_size 4M; 解决了这个问题和我的 Nginx conf 看起来像:

//Add sample Nginx Server
//Block here

错误停止显示,但文件仍未到达应用程序。我不明白它在某些计算机上有效,而在某些计算机上则不起作用。

最佳答案

如果您在尝试上传时遇到 413 Request Entity Too Large 错误,则需要增加 nginx.conf 中的大小限制或任何其他配置文件。添加 client_max_body_size xxM在服务器部分,其中 xx是您想要允许的大小(以兆字节为单位)。

http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;

server {
client_max_body_size 20M;
listen 80;
server_name localhost;

# Main location
location / {
proxy_pass http://127.0.0.1:8000/;
}
}
}

关于python-2.7 - Nginx:413 实体太大 - 文件未到达应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16312079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com