nginx 不解释某些 PHP 文件

nginx 不解释某些 PHP 文件

我正在尝试将一台服务器上的 php / mysql / apache 网站移植到另一台服务器上。

另一台服务器是 amazon ec2 上的原始 Linux 机器。我不是高级 Linux 管理员。但我有一些基本知识。

因此,我安装了 nginx 并将文档根目录设置为 /home/webroot/ 。我设置了 php cgi 服务器并在端口 9000 上启动它。安装了 mysql 并导入了转储。创建了一个名为 webroot 的 FTP 用户,该用户具有 /home/webroot/ 的权限,并将其添加到 vsftpd 以将所有文件上传到 /home/webroot/。

完美的。

我访问了 subdomain.site.com,它解析了,但返回了一个空白页。它没有解释 index.php 和其他上传的 php 文件。但它却解释了我创建的一些新文件。它要么显示空白页,要么将整个 PHP 代码转储到浏览器。

我创建了一个示例 test.php,并在其中填充了一些代码以读取请求变量并打印它。我从 subdomain.site.com/test.php?id=2 访问它,它确实对其进行了解释。如果我从命令行调用它,它也会连接到数据库。

为什么有些文件可以工作,而有些文件却不行。这是 php 错误还是 nginx 错误。有什么想法吗?这是 nginx.conf -

    server {
listen       80;
    server_name  sub.domain.com;
    #charset koi8-r;
    #access_log  logs/host.access.log  main;

    location / {
        root   /home/webroot;
        index  index.html index.htm index.php;
    }

error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/html;
    }

# redirect server error pages to the static page /50x.html
    #
error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
#location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /home/webroot$fastcgi_script_name;
        include        /etc/nginx/fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
#location ~ /\.ht {
    #    deny  all;
    #}
}

# Load config files from the /etc/nginx/conf.d directory
include /etc/nginx/conf.d/*.conf;

}

有任何想法吗 ?

答案1

我不是 nginx 或 php 专家,但您描述的行为的性质告诉我,要么是 fastcgi 没有执行 php 文件,要么是您的服务器上的 fastcgi 可能没有正确运行。我不认为 nginx 会自动启动 fastcgi 服务器,在这种情况下,您可能会将该内容作为静态文件从 nginx 提供。

只是一种预感,希望有帮助。

相关内容