Skip to content

Commit

Permalink
fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Sep 7, 2022
1 parent 2b24a58 commit 0618611
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@
'root' => env('LYCHEE_UPLOADS', public_path('uploads/')),
'url' => env('LYCHEE_UPLOADS_URL', 'uploads/'),
'visibility' => 'public',
'permissions' => [
'file' => [
'world' => 00666,
'public' => 00664,
'private' => 00660,
],
'dir' => [
'world' => 02777,
'public' => 02775,
'private' => 02770,
],
],
],

// Lychee uses this disk to store the customized CSS file provided by the user
Expand Down

0 comments on commit 0618611

Please sign in to comment.