📜  laravel 部署的权限 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:43.130000             🧑  作者: Mango

代码示例3
cd /code/laravel_project
php artisan cache:clear
php artisan config:clear
sudo service php7.4-fpm stop
sudo service nginx stop

sudo chown -R $USER:www-data storage
sudo chown -R $USER:www-data bootstrap/cache
chmod -R 775 storage
chmod -R 755 bootstrap/cache
sudo service php7.4-fpm start && sudo service nginx start