X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=config%2Ffilesystems.php;h=4076fb54077e0b08eb33dac2550634d6af99d90c;hb=ca11676f7b9efab82f1cf014f9c34e4b961c0519;hp=68b2694e004cdc85c3124420c351a734d07c94a1;hpb=75b3b5826c781e47b3db693fa6d3d17f67c79e56;p=alttp.git diff --git a/config/filesystems.php b/config/filesystems.php index 68b2694..4076fb5 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,11 @@ return [ 'visibility' => 'public', ], + 'aos-spoilers' => [ + 'driver' => 'local', + 'root' => storage_path('app/aos-spoilers'), + ], + 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'), @@ -78,6 +95,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'), ],