Changeset 24a616f for config/filesystems.php
- Timestamp:
- 10/13/21 15:44:57 (3 years ago)
- Branches:
- develop, master
- Children:
- 120759b
- Parents:
- 194a359
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
config/filesystems.php
r194a359 r24a616f 34 34 'driver' => 'local', 35 35 'root' => storage_path('app'), 36 'permissions' => [ 37 'file' => [ 38 'public' => 0664, 39 'private' => 0600, 40 ], 41 'dir' => [ 42 'public' => 0775, 43 'private' => 0700, 44 ], 45 ], 46 ], 47 48 'image-uploads' => [ 49 'driver' => 'local', 50 'root' => public_path() . '/assets/images/uploads', 36 51 ], 37 52 … … 41 56 'url' => env('APP_URL').'/storage', 42 57 'visibility' => 'public', 58 ], 59 60 'uploads' => [ 61 'driver' => 'local', 62 'root' => public_path() . '/uploads', 43 63 ], 44 64
Note:
See TracChangeset
for help on using the changeset viewer.