X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=config%2Ffilesystems.php;h=d1e5c6c453c72ebd2a8307f6c37efa285e9ffa32;hb=7649d12f400f164dd06f6a45486221234052dbb6;hp=68b2694e004cdc85c3124420c351a734d07c94a1;hpb=75b3b5826c781e47b3db693fa6d3d17f67c79e56;p=alttp.git diff --git a/config/filesystems.php b/config/filesystems.php index 68b2694..d1e5c6c 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -44,10 +44,22 @@ return [ 'throw' => false, ], - 'aos-seeds' => [ + 'alttp-seeds' => [ 'driver' => 'local', - 'root' => storage_path('app/aos-seeds'), - 'url' => env('AOS_URL').'/aos-seeds', + 'root' => storage_path('app/alttp-seeds'), + 'url' => env('APP_URL').'/alttp-seeds', + 'visibility' => 'public', + ], + + 'alttp-spoilers' => [ + 'driver' => 'local', + 'root' => storage_path('app/alttp-spoilers'), + ], + + 'media' => [ + 'driver' => 'local', + 'root' => storage_path('app/media'), + 'url' => env('APP_URL').'/media', 'visibility' => 'public', ], @@ -78,7 +90,8 @@ return [ 'links' => [ public_path('storage') => storage_path('app/public'), - public_path('aos-seeds') => storage_path('app/aos-seeds'), + public_path('alttp-seeds') => storage_path('app/alttp-seeds'), + public_path('media') => storage_path('app/media'), ], ];