码迷,mamicode.com
首页 > 其他好文 > 详细

nginx运行出现 file not found 错误处理原因

时间:2019-05-12 20:02:07      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:filename   list   nginx   重启nginx   权限   设置   not found   location   www.   

在阿里云装nginx+php+mysql nginx运行出现 file not found 错误处理原因

1,第一情况

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

 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;这里改为 $document_root

2,第二情况

server {
listen 80;
server_name v1.ywwfx.com;
root /home/www/www.96net.com.cn;

}

root /home/www/www.96net.com.cn;目录权限不够导致的

3,第三种情况

vim /etc/php-fpm.d/www.conf

user=nginx

group=nginx

这些都设置后  重启nginx  php-fpm 就可以运行了

nginx运行出现 file not found 错误处理原因

标签:filename   list   nginx   重启nginx   权限   设置   not found   location   www.   

原文地址:https://www.cnblogs.com/96net/p/10853320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!