X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=config%2Ffilesystems.php;h=3847f46a6648f72707e8ec4ac42e6858101000e0;hb=5cb7cb567817bb3f40443ecd0431154e92ed918d;hp=4076fb54077e0b08eb33dac2550634d6af99d90c;hpb=e0195b0aebf84bdf5a05c887abc4300a6546a9b2;p=alttp.git diff --git a/config/filesystems.php b/config/filesystems.php index 4076fb5..3847f46 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -68,6 +68,13 @@ return [ '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'), @@ -97,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'), ], ];