📜  laravel 存储文件夹权限 - PHP 代码示例

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

代码示例3
cd /path/to/root;
sudo chmod -R 777 ./ 
sudo chown -R www-data:www-data ./
sudo usermod -a -G www-data ubuntu
sudo find ./ -type f -exec chmod 644 {} \;
sudo find ./ -type d -exec chmod 755 {} \;
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache