急急急!!!ubuntu+laravel+nginx安装完成后,请求laravel框架失败

这个问题困扰我好几天了。
按照网上的步骤在ubuntu中安装了+laravel+nginx+php,每个步骤安装成功,
但是请求不到laravel框架。输入http://ip/,没有预期的结果。
下面给出关键配置:
1、nginx配置:
worker_processes 1;

events {
worker_connections 1024;
}

http {
include mime.types;
default_type application/octet-stream;

sendfile on;
keepalive_timeout 65;

server {
listen 80;
server_name ip;
root /opt/www/laravel/public;
index index.html index.php;

location / {
try_files $uri $uri/ /index.php$query_string;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ .php$ {
root html;
fastcgi_pass unix:/opt/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
浏览器输入http://ip/,显示的是/usr/local/nginx/html/index.php的内容。

2、经过调试,是try_files失败,估计可能是权限问题,权限设置:
(1)、fpm.conf中指定的用户和用户组:
user = skycity
group = panda

(2)、指定/opt/www/laravel/目录权限:
chgrp -R panda /opt/www/laravel
chown -R skycity:panda /opt/www/laravel
结果try_files还是失败!

请问这是什么原因呢?
已邀请:

王赛

赞同来自:

linux系统上,(以ubuntu为例),nginx、php-fpm 默认安装之后都是以
www-data
用户运行的,你可以看看这两个服务的原始配置文件,建议不要修改用户,而是把你的laravel项目目录也设置属主为
www-data
,如下:
sudo chown -R www-data:www-data /path/to/your/laravel/project

要回复问题请先登录注册