nginx环境大文件上传问题汇总

1000阅读 0评论2021-03-22 wwm
分类:Python/Ruby

1、超时 gateway timeout

增加 proxy_read_timeout  7200;
比如:
ocation / {
proxy_pass *.*.*:8088;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection   upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_read_timeout  7200;
}

2、文件大小限制
增加
    client_max_body_size 1024M;

http {   
client_max_body_size 1024M;    #限制1024M
 
  include /etc/nginx/conf.d/*.conf;
}

上一篇:月份自有加减relativedelta
下一篇:django后台运行报编码错误