]> git.localhorst.tv Git - alttp.git/blobdiff - config/filesystems.php
add media storage
[alttp.git] / config / filesystems.php
index e743e9ff6c5bac072032a45ef584eb30a9afa33e..3847f46a6648f72707e8ec4ac42e6858101000e0 100644 (file)
@@ -63,6 +63,18 @@ return [
                        'visibility' => 'public',
                ],
 
+               'aos-spoilers' => [
+                       'driver' => 'local',
+                       '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'),
@@ -92,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'),
        ],
 
 ];