如图 试着用 https://laravist.com/series/deploy-laravel-app-on-vps 上的视频教程加 https://lufficc.com/blog/step-by-step-teach-you-to-deploy-your-laravel-application-to-server 博客的教程部署在 VPS 结果却是如图所示 fpm 已经修改了 nginx 在 location / try_files 改为 try_files $uri $uri/ /index.php?$query_string;博客所在目录给予 nginx 的 www-data 用户组与用户名权限: sudo chmod -R 775 storage/ sudo chown -R www-data:www-data /var/www/Xblog 重启 nginx 和 fpm : sudo service nginx restart sudo service php7.1-fpm restart 各位菊苣给点意见吧 有的说是没安装 unzip 和 zip 我试着重新安装一遍还是不行 //https://laravist.com/discuss/laravel/laravel-project-from-scratch-deployment-752
1
yangqi 2016-11-05 00:22:25 +08:00
查 log
/var/log/nginx/... 或者 /var/www/Xblog/storage/logs/laravel.log |
2
kslr 2016-11-05 01:05:18 +08:00 via Android
Laravel 日志直接就定位了
|
3
zacharyjia 2016-11-05 01:13:09 +08:00
storage 目录给权限了没
|
4
Yunhao 2016-11-05 01:15:19 +08:00 via iPhone
我记得 bootstrap/cache 目录的权限也要 775
|
5
chenxu 2016-11-05 07:22:07 +08:00 via Android
给 storage 权限
|
6
bazingaterry 2016-11-05 09:17:26 +08:00 via iPhone
开 debug 模式看错误
|
7
dxwwym 2016-11-05 09:40:20 +08:00 via iPhone
我之前权限不对直接 500 ,没有其他提示
|
8
j8sec 2016-11-05 10:57:56 +08:00 via iPhone
stoarge 不可以写
|
9
sobigfish 2016-11-05 11:59:55 +08:00
ls 都不看 lz 确实 chmod -R 775 storage 了么-。-
lz 看 log 啊啊,什么都没有只有 500 谁也不明白的,@dxwwym storage 不可写的情况下 log 是会被报 view 之类的错的 |