X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=config%2Ffilesystems.php;h=3847f46a6648f72707e8ec4ac42e6858101000e0;hb=5cb7cb567817bb3f40443ecd0431154e92ed918d;hp=e743e9ff6c5bac072032a45ef584eb30a9afa33e;hpb=4aeaa2ab482a0915da0016fc8175e7cbaa0ab261;p=alttp.git diff --git a/config/filesystems.php b/config/filesystems.php index e743e9f..3847f46 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -63,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'), @@ -92,6 +104,7 @@ return [ 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'), ], ];