mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-10-28 11:37:46 +09:00
16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
|
|
|
|
'disks' => [
|
|
'local' => [
|
|
'driver' => 'local',
|
|
'root' => storage_path('app'),
|
|
'throw' => false,
|
|
],
|
|
],
|
|
|
|
];
|