X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=config%2Ffilesystems.php;h=bfcbf29f88040ee970c2d0c9908aa8ae785194ce;hb=26d47ca368d8e7c2690cec49f6ae2ad509a0428d;hp=4076fb54077e0b08eb33dac2550634d6af99d90c;hpb=e0195b0aebf84bdf5a05c887abc4300a6546a9b2;p=alttp.git diff --git a/config/filesystems.php b/config/filesystems.php index 4076fb5..bfcbf29 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -47,7 +47,7 @@ return [ 'alttp-seeds' => [ 'driver' => 'local', 'root' => storage_path('app/alttp-seeds'), - 'url' => env('AOS_URL').'/alttp-seeds', + 'url' => env('APP_URL').'/alttp-seeds', 'visibility' => 'public', ], @@ -56,16 +56,16 @@ return [ 'root' => storage_path('app/alttp-spoilers'), ], - 'aos-seeds' => [ + 'chatlib' => [ 'driver' => 'local', - 'root' => storage_path('app/aos-seeds'), - 'url' => env('AOS_URL').'/aos-seeds', - 'visibility' => 'public', + 'root' => storage_path('app/chatlib'), ], - 'aos-spoilers' => [ + 'media' => [ 'driver' => 'local', - 'root' => storage_path('app/aos-spoilers'), + 'root' => storage_path('app/media'), + 'url' => env('APP_URL').'/media', + 'visibility' => 'public', ], 's3' => [ @@ -96,7 +96,7 @@ 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'), ], ];