Laravel部署注意事项

Composer

注意:执行 composer 命令之前必须引入PHP环境变量

export PATH=$PATH:/data/server/php7/bin

Nginx配置

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

Laravel配置

(1)缓存配置

php artisan cache:clear  //清理缓存(必须执行)
php artisan route:clear  //清理路有缓存
composer dump-autoload  //重新加载类库(必须执行)

php artisan config:clear  //清理配置缓存
rm -f bootstrap/cache/config.php  //与config:clear结合使用

(2)权限配置

chmod 755 -R ./
chmod -R 777 storage
chmod -R 777 bootstrap/cache
chmod -R 777 public

(3)生成Key

php artisan key:generate

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/19/laravel-deploy-notes/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Laravel部署注意事项
Composer 注意:执行 composer 命令之前必须引入PHP环境变量 export PATH=$PATH:/data/server/php7/bin Nginx配置 location / { try_files $uri $uri/ /i……
<<上一篇
下一篇>>
文章目录
关闭
目 录