|
发表于 2012-9-4 11:49:40
|
显示全部楼层
困扰了半个月,今天继续拿起。
一通搜索后,问题初步解决
Today I was getting “502 Bad Gateway” on a CI project , after digging into the problem I found out it is a problem of nginx fastcgi buffers , here is how to fix it : open /etc/nginx/nginx.conf
add the following lines into http section :
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
引自 http://stackoverflow.com/questions/1514576/drupal-nginx-php-cgi-502-bad-gateway-error |
|