Nginx PHP服务器块返回502错误

时间:2016-08-03 09:47:15

标签: php nginx hosts

我正在尝试在我的本地Nginx安装上创建一个简单的服务器块,它将返回一个简单的PHP index.php页面。我以前做过这个没有任何问题,但在这种情况下,我似乎无法让它工作,我不知道为什么!每当我尝试访问该URL时,我都会收到502错误。

这是我的本地主机文件:

127.0.0.1       localhost
127.0.1.1       james-ESPRIMO-P420
127.0.0.1       st-davids-lab.dev
127.0.0.1       molecare.dev
127.0.0.1       st-davids-ire.dev
127.0.0.1       charity-site.dev
127.0.0.1       smaxtec.dev
127.0.0.1       product-viewer.dev
127.0.0.1       stdavids-brain.dev
127.0.0.1       http://php-parser.dev
127.0.0.1       php-parser.dev

这是我在/ etc / nginx / sites-available文件夹中的conf文件:

server {
        listen 80;
        server_name php-parser.dev http://php-parser.dev;


        root /var/www/php-parser/;
        index index.php index.html;

        # Important for VirtualBox
        sendfile off;

        location / {
            try_files $uri $uri/ /index.php?$query_string;
            #rewrite ^(.*)$ /index.php
        }

        location ~* \.php {
            include fastcgi_params;

            fastcgi_pass unix:/var/run/php5-fpm.sock;

            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
            fastcgi_cache off;
            fastcgi_index index.php;
        }

我还通过执行当前命令在已启用站点的文件夹中创建了符号链接:

sudo ln -s /etc/nginx/sites-available/phpparser.conf /etc/nginx/sites-enabled

在我的/var/www/php-parser/index.php文件中,我有一个简单的die语句,应该显示当我访问URL php-parser.dev时这是有效的,但这永远不会被命中。

任何人都可以看到这里出了什么问题,因为它真气!这将是一个愚蠢的事情!

以下是Nginx错误日志的输出:

2016/08/03 11:01:55 [crit] 4830#4830: *34 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 127.0.0.1, server: php-parser.dev, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "php-parser.dev"

由于

1 个答案:

答案 0 :(得分:0)

所以,似乎当我升级Ubuntu时,它将我的PHP版本升级到PHP7并删除了我的PHP5包。我的conf文件仍然指向旧的PHP5版本,因此我只是将其添加到我的默认和必要的conf文件中:

fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;