mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2026-03-16 16:25:41 +01:00
Added export disk
This commit is contained in:
parent
93a3107a95
commit
edae39c3c5
1 changed files with 26 additions and 0 deletions
|
|
@ -77,4 +77,30 @@ return [
|
|||
public_path('storage') => storage_path('app/public'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Exports
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
|
|
||||
*/
|
||||
|
||||
'export' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/exports'),
|
||||
'url' => env('APP_URL') . '/exports',
|
||||
'visibility' => 'public',
|
||||
'permissions' => [
|
||||
'file' => [
|
||||
'public' => 0644,
|
||||
'private' => 0600,
|
||||
],
|
||||
'dir' => [
|
||||
'public' => 0755,
|
||||
'private' => 0700,
|
||||
],
|
||||
],
|
||||
'throw' => false,
|
||||
]
|
||||
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue