From 35e5e16df932eabe2c4b0eb416084b14e502ca9e Mon Sep 17 00:00:00 2001 From: Saeed Vaziry Date: Sat, 23 Mar 2024 18:53:28 +0100 Subject: [PATCH] add backward compatibility to filesystem --- config/filesystems.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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'), + ], ], /*