如何将laravel 5.4部署到生产服务器?

时间:2018-07-24 08:18:10

标签: laravel-5

我生成一个laravel项目。现在,我需要将项目移至生产服务器。在本地系统中,我使用php artisan serve运行项目并运行http://127.0.0.1:8000/

在移至生产服务器时,我更改了.env文件

APP_ENV=production
APP_DEBUG=false
APP_LOG_LEVEL=debug
APP_URL=http://myserverip

我的config / app.php

 'env' => env('APP_ENV', 'production'),

 'debug' => env('APP_DEBUG', false),

 'url' => env('APP_URL', 'http://my ip'),

我实时运行项目(ip / projectfolder),它在浏览器中显示目录文件。 我还有什么需要配置的东西吗?

0 个答案:

没有答案