无法运行配置 PHP

无法运行配置 PHP

我已经安装了 nginx1.13.1 和 php7.0.18,我尝试在我的网站服务器上运行配置 PHP 页面,但出现 404 未找到错误。请帮我如何配置

Nginx 配置( /etc/nginx/conf.d/*.conf )如下:

server {
    listen       80;
    server_name example.com;

   # charset koi8-r;   
   # access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index index.php index.html index.htm;

    }

    #error_page  404              /404.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$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
     #   fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        include        fastcgi_params;
    }

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

答案1

您在配置的 PHP 部分中注释掉的那fastcgi_pass行和那几行使 PHP 能够正常工作。取消注释这些行,重新启动 nginx,只要您更新该行以指向系统上的 PHP 套接字(请参阅 PHP 的配置以了解正确的路径),它就会开始工作。fastcgi_indexfastcgi_pass

至于 404,请参考/var/log/nginx/error.log并确保root在您的服务器配置中将其设置在 PHP 文件实际存储的位置之外 - 需要这样做以便 NGINX 知道在哪里查找您的文件。

相关内容