博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx-Primary script unknown的报错的解决方法
阅读量:6034 次
发布时间:2019-06-20

本文共 1144 字,大约阅读时间需要 3 分钟。

配置nginx时一直报错:file not found

错误日志:

[error] 12691#0: *6 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: 192.168.168.1, server: localhost, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "192.168.168.133"

改成下面的配置恢复正常,/datao/htdocs/thinkphp为根目录

{    listen          80;    server_name     www.tp.com;    access_log      /data1/logs/tp_access.log myformat;    index index.html index.htm index.php;    root    /datao/htdocs/thinkphp;    location ~ \.php    {            fastcgi_index index.php;            fastcgi_pass 127.0.0.1:9000;            include      fastcgi_params;            set $path_info "";            set $real_script_name $fastcgi_script_name;            if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {                    set $real_script_name $1;                    set $path_info $2;            }            fastcgi_param SCRIPT_FILENAME /data0/htdocs/thinkphp/$real_script_name;            fastcgi_param SCRIPT_NAME $real_script_name;            fastcgi_param PATH_INFO $path_info;    }               }

 

转载于:https://www.cnblogs.com/lamp01/p/8625850.html

你可能感兴趣的文章
Linux之/etc/fstab文件讲解
查看>>
Nosql入门知识(转)
查看>>
HustOJ - 1019
查看>>
IntelliJ IDEA 配置Jetty
查看>>
disruptor 核心概念 二
查看>>
矩阵快速幂
查看>>
什么是注入点
查看>>
python 常见脚本
查看>>
MYSQL安装图解2
查看>>
UVA 11212 Editing a Book
查看>>
****** 二 ******、软设笔记【数据结构】-KMP算法、树、二叉树
查看>>
hadoop生态搭建(3节点)-15.Nginx_Keepalived_Tomcat配置
查看>>
数据库基础积累
查看>>
jQuery超链接提示,提示跟随鼠标动
查看>>
javascript 日期函数
查看>>
spring学习之bean scope
查看>>
大家一起和snailren学java-(五)访问控制权限
查看>>
大家一起和snailren学java-(13)字符串
查看>>
BigDecimal的用法详解(保留两位小数,四舍五入,数字格式化,科学计数法转数字,数字里的逗号处理)...
查看>>
TJOI2018Party
查看>>