Windows 上的 NGINX 和 php-cgi“未指定输入文件”

Windows 上的 NGINX 和 php-cgi“未指定输入文件”

我正在运行 php-cgi 和 NGINX。它们在一个文件夹中运行,但是它们的根目录在 2 个目录之外,在 2 个目录之内。当根目录为 html(默认)时,它们工作正常,但是现在 php 报告“未指定输入文件”错误。我尝试设置目录以授予所有程序完全控制权,我已经拥有完全控制权,我尝试查看 php 是否在不同的目录中查找,尝试更改目录,对 php 变量进行硬编码等。我遵循了大约 5 个不同的教程来解决这个问题,但没有一个能解决这个问题。控制台中没有错误,我的 fastcgi.conf 没有变化。php 和 NGINX 肯定都在运行和通信,但是由于某种原因 php 无法获取文件。访问任何非 php 文件时,NGINX 成功检索文件,我的浏览器显示它。我使用 netstat 验证了在端口 9100 上监听的唯一程序是我的 php-cgi。在端口 8080 上监听的唯一程序是 NGINX。 php 和 NGINX 都配置为正确通信,并且 php-cgi 通过 php 目录中的 RunHiddenConsole.exe 运行。

这是目录树,格式类似于 YAML:

EclipsePHP
    - Code
        - Blog
            - Source (NGINX/php root Location/Website Source Files)
    - NGINX
        - 1.9.11 (NGINX Executable Location)
            - php (php Executable Location)

还有我的 nginx.conf

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    client_max_body_size 5G;
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        root   ../../Code/Blog/Source;
        client_max_body_size 5G;
        listen       8080;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            index  index.php;
            try_files $uri $uri.html $uri/ @extensionless-php;
            index index.html index.htm index.php;
            client_max_body_size 5G;
        }

        error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #

        recursive_error_pages off;

        # 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$ {
            client_max_body_size 5G;
            try_files      $uri =404;
            include        fastcgi.conf;
            include        fastcgi_params;
            fastcgi_pass   127.0.0.1:9100;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        }

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

        location @extensionless-php {
             rewrite ^(.*)$ $1.php last;
        }
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

导致此错误的原因可能是什么?我该如何解决它,以便可以在浏览器中正确查看 php 文件?(我正在使用 Eclipse PHP 编辑源代码,无论是否运行 Eclipse,都会发生此错误。)

答案1

由于 php 不喜欢相对目录,我的解决方案是使用批处理在每次启动时设置绝对目录。我在启动 NGINX 之前将以下内容插入批处理启动脚本中。

set TEXT_FILE=conf\phploc.conf
set REL_PATH=..\..\Code\Blog\Source
set ABS_PATH=
pushd %REL_PATH%
set ABS_PATH=%CD%
popd
echo fastcgi_param  SCRIPT_FILENAME  %ABS_PATH%$fastcgi_script_name; > %TEXT_FILE%

然后在 NGINX 配置文件中,我在 php 位置块中插入以下内容以加载目录设置。

include phploc.conf;

答案2

您将根定义为相对路径,该路径相对于nginx配置目录。

然后将其传递给php-cgi,而 可能并不关心nginx其文件保存在何处。因此无法解析../../

您应该指定一个绝对根。

相关内容