diff --git a/config/filesystems.php b/config/filesystems.php index 06fbd5a..5ba1fb5 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -40,7 +40,7 @@ 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), - 'url' => env('APP_URL').'/storage', + 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], @@ -62,10 +62,22 @@ 'root' => storage_path('app/key-pairs'), ], + // @deprecated + 'key-pairs-local' => [ + 'driver' => 'local', + 'root' => storage_path('app/key-pairs'), + ], + 'server-logs' => [ 'driver' => 'local', 'root' => storage_path('app/server-logs'), ], + + // @deprecated + 'server-logs-local' => [ + 'driver' => 'local', + 'root' => storage_path('app/server-logs'), + ], ], /*