|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
系统安全相关命令:passwd、su、umask、chgrp、chmod、chown、chattr、sudo、pswho
在centos上乐成编译安装nginx1.4、php5.4并乐成启动nginx和php-fpm后,会见php提醒"Filenotfound.",同时在毛病日记中看到:
.代码以下:
2013/10/2220:05:49[error]12691#0:*6FastCGIsentinstderr:"Primaryscriptunknown"whilereadingresponseheaderfromupstream,client:192.168.168.1,server:localhost,request:"GET/HTTP/1.1",upstream:"fastcgi://127.0.0.1:9000",host:"192.168.168.133"
毛病办理办法:
在Nginx设置文件中找到界说挪用剧本文件的中央,如:
.代码以下:
fastcgi_paramSCRIPT_FILENAME/scripts$fastcgi_script_name;
修正成以下体例($document_root):
.代码以下:
fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;
提醒:
$document_root代表以后哀求在root指令中指定的值。如:
.代码以下:
location/{
root/usr/local/nginx/html;
indexindex.phpindex.htmlindex.htm;
fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;
}
下面设置中的$document_root就是针对/usr/local/nginx/html目次下的php文件举行剖析。
常用的linux命令,尤其是一些能帮你提高开发效率的命令,(eg:grep,awk,sed,split等); |
|