浏览代码

Give execute permissions to folders

nginx returns 403 for every url on app/public/storage because of the strict permissions.
Raphael Lullis 4 月之前
父节点
当前提交
5d9d4e7e12
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      config/filesystems.php

+ 1 - 1
config/filesystems.php

@@ -53,7 +53,7 @@ return [
                 ],
                 'dir' => [
                     'public' => 0755,
-                    'private' => 0700,
+                    'private' => 0711,
                 ],
             ],
         ],