在远程主机上安装laravel 5.6应用程序时出错

时间:2018-07-22 08:00:56

标签: laravel-5 hosting

我正在尝试在远程托管(数字海洋,Ubuntu 16.04.3)上安装laravel 5.6应用程序

我在/ etc / apache2 / sites-available设置了我的应用程序/ public的DocumentRoot

我在/etc/apache2/apache2.conf中添加了一行

ServerName localhost

并全部设置:

AllowOverride All

我做了

a2enmod rewrite

和 sudo服务apache2重新启动

# sudo apache2ctl configtest
Syntax OK

在浏览器中运行时,我收到消息

  

此页面无法使用NNN.NN.NN.NNN当前无法处理   这个请求。 HTTP错误500

正如我看到的错误代码所示,我的网络托管正常,那是一些特定的内部错误? 但是我想看到laravel错误吗?

我跑步

sudo chmod -R 777 /var/www/html/box-booking/storage

日志目录为空:

and root@Box-Booking-Server:/var/www/html/box-booking/storage/logs# ls -la
total 12
drwxr-xr-x 2 root root 4096 Jul 22 06:13 .
drwxr-xr-x 6 root root 4096 Jul 22 06:13 ..
-rwxr-xr-x 1 root root   14 Jul 22 06:13 .gitignore

在我的.env中:

APP_NAME=Laravel
APP_ENV=local
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://NNN.NN.

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306

在我的/config/app.php文件中,我进行了更改:

   'env' =>  'local',
 'debug' => true,

但是我没有看到任何错误吗?

是一些配置缓存吗?如何查看错误?

谢谢!

0 个答案:

没有答案