Laravel安装后访问空白

按照官方及其他教程在Ubuntu上安装好了Composer也安装好了Laravel,
然后按照
http://laravel.lapland.name/po ... 14-04
这里的:“配置 Nginx 和 Web 目录”改了网站默认目录
创建网站目录 :

sudo mkdir -p /var/www/laravel
打开 nginx 默认配置文件:

sudo vim /etc/nginx/sites-available/default
默认配置如下:

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

root /usr/share/nginx/html;
index index.html index.htm;

server_name localhost;

location / {
try_files $uri $uri/ =404;
}
}
修改如下:

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

# 设定网站根目录
root /var/www/laravel/totoro/public;
# 网站默认首页
index index.php index.html index.htm;

# 服务器名称,server_domain_or_IP 请替换为自己设置的名称或者 IP 地址
server_name server_domain_or_IP;

# 修改为 Laravel 转发规则
location / {
try_files $uri $uri/ /index.php?$query_string;
}

# PHP 支持
location ~ .php$ {
try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
修改完成,我们需要重启下 nginx 服务:

sudo service nginx restart

然后laravel new totoro

安装完其他,修改了storage 为775,
但是访问localhost 或localhost/totoro/public 都是空白,查了nginx错误日志如附件所示。谁能告诉我是什么原因?折腾好几天了。。谢谢!
1.png
已邀请:

lujscn

赞同来自:

把 ipv6only=on 一整行去掉

要回复问题请先登录注册