X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=config%2Ffilesystems.php;h=3847f46a6648f72707e8ec4ac42e6858101000e0;hb=5cb7cb567817bb3f40443ecd0431154e92ed918d;hp=68b2694e004cdc85c3124420c351a734d07c94a1;hpb=75b3b5826c781e47b3db693fa6d3d17f67c79e56;p=alttp.git diff --git a/config/filesystems.php b/config/filesystems.php index 68b2694..3847f46 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -44,6 +44,18 @@ return [ 'throw' => false, ], + 'alttp-seeds' => [ + 'driver' => 'local', + 'root' => storage_path('app/alttp-seeds'), + 'url' => env('AOS_URL').'/alttp-seeds', + 'visibility' => 'public', + ], + + 'alttp-spoilers' => [ + 'driver' => 'local', + 'root' => storage_path('app/alttp-spoilers'), + ], + 'aos-seeds' => [ 'driver' => 'local', 'root' => storage_path('app/aos-seeds'), @@ -51,6 +63,18 @@ return [ 'visibility' => 'public', ], + 'aos-spoilers' => [ + 'driver' => 'local', + 'root' => storage_path('app/aos-spoilers'), + ], + + 'media' => [ + 'driver' => 'local', + 'root' => storage_path('app/media'), + 'url' => env('APP_URL').'/media', + 'visibility' => 'public', + ], + 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'), @@ -78,7 +102,9 @@ return [ 'links' => [ public_path('storage') => storage_path('app/public'), + public_path('alttp-seeds') => storage_path('app/alttp-seeds'), public_path('aos-seeds') => storage_path('app/aos-seeds'), + public_path('media') => storage_path('app/media'), ], ];