mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 18:01:37 +00:00
add backward compatibility to filesystem
This commit is contained in:
parent
369bf1b965
commit
35e5e16df9
@ -40,7 +40,7 @@
|
|||||||
'public' => [
|
'public' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'root' => storage_path('app/public'),
|
'root' => storage_path('app/public'),
|
||||||
'url' => env('APP_URL').'/storage',
|
'url' => env('APP_URL') . '/storage',
|
||||||
'visibility' => 'public',
|
'visibility' => 'public',
|
||||||
'throw' => false,
|
'throw' => false,
|
||||||
],
|
],
|
||||||
@ -62,10 +62,22 @@
|
|||||||
'root' => storage_path('app/key-pairs'),
|
'root' => storage_path('app/key-pairs'),
|
||||||
],
|
],
|
||||||
|
|
||||||
|
// @deprecated
|
||||||
|
'key-pairs-local' => [
|
||||||
|
'driver' => 'local',
|
||||||
|
'root' => storage_path('app/key-pairs'),
|
||||||
|
],
|
||||||
|
|
||||||
'server-logs' => [
|
'server-logs' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'root' => storage_path('app/server-logs'),
|
'root' => storage_path('app/server-logs'),
|
||||||
],
|
],
|
||||||
|
|
||||||
|
// @deprecated
|
||||||
|
'server-logs-local' => [
|
||||||
|
'driver' => 'local',
|
||||||
|
'root' => storage_path('app/server-logs'),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user