Laravel网站根目录权限设置

作者: 吴杰 分类: 编程 发布时间: 2024-11-22 08:41

for directories

find . -type d -print0 | xargs -0 chmod 0755

for files

find . -type f -print0 | xargs -0 chmod 0644
chown -R www-data:www-data *

把当前文件夹也加入php-fpm用户组

chown -R www-data:www-data .

更改 storage 文件夹权限

chmod -R 0755 storage