zoukankan      html  css  js  c++  java
  • CentOS 7+nginx+PHP+php-fpm

    根据网上资料配置:

            location ~ .php$ {
                #include        fastcgi_params;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                include        fastcgi_params;
            }
    

      死活提示: file not found

    error.log 日志:

    [error] 27515#0: *35 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream,
    

      

    我的root 路径配置在/home/xxx/路径下, 用户组, 用户权限也是对的,但是一直提示 File not found。

    最后把路径改到 /usr/local/下面, 就ok了!

  • 相关阅读:
    python基础 2
    python基础 1
    进程
    进程作业
    上海python14期第二次阶段性考试
    面向对向之元类
    面向对向
    笔试题
    模块(2)
    模块作业
  • 原文地址:https://www.cnblogs.com/vivid-stanley/p/6822795.html
Copyright © 2011-2022 走看看