nginx使用中的问题集合

1. Nginx中的error.log中显示“ upstream sent invalid chunked response while reading response header from upstream ......"

解决:

在nginx.conf 文件中location模块位置添加两句

server{

...... //其他配置

location / {

#就添加下面这两句

proxy_http_version 1.1;

proxy_set_header Connection "";

}

}

上一篇:nginx负载均衡的5种策略


下一篇:转 Nginx connect() failed (110: Connection timed out)