📜  适当的权限网络服务器 laravel - PHP 代码示例

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

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