您好,欢迎访问一九零五行业门户网

ubuntu 12.10 默许安装php5-fpm无监听9000端口,nginx无法链接php5-fpm修正

ubuntu 12.10 默认安装php5-fpm无监听9000端口,nginx无法链接php5-fpm修正
升级到ubuntu 12.10 后nginx报502错误,php无法运行。
netstat -an未发现监听9000端口。
查看/var/log/php5-fpm.log一切正常。
随后查看/etc/php5/fpm/pool.d/www.conf,发现listen = /var/run/php5-fpm.sock。
修改nginx下的sites配置
        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                fastcgi_param application_env production;
                include fastcgi_params;
        }

        location ~ \.php$ {
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param script_filename $document_root$fastcgi_script_name;
                include fastcgi_params;
        }
重启php5-fpm与nginx后,恢复。
财哥的博客
其它类似信息

推荐信息