X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=config%2Ffilesystems.php;h=d1e5c6c453c72ebd2a8307f6c37efa285e9ffa32;hb=4e24f36eb5d6907697c106ca15c2c405728d78a8;hp=e743e9ff6c5bac072032a45ef584eb30a9afa33e;hpb=4aeaa2ab482a0915da0016fc8175e7cbaa0ab261;p=alttp.git diff --git a/config/filesystems.php b/config/filesystems.php index e743e9f..d1e5c6c 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,10 +56,10 @@ return [ 'root' => storage_path('app/alttp-spoilers'), ], - 'aos-seeds' => [ + 'media' => [ 'driver' => 'local', - 'root' => storage_path('app/aos-seeds'), - 'url' => env('AOS_URL').'/aos-seeds', + 'root' => storage_path('app/media'), + 'url' => env('APP_URL').'/media', 'visibility' => 'public', ], @@ -91,7 +91,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'), ], ];