simplify filesystem default config
This commit is contained in:
parent
00f07ff382
commit
85e6774d2e
|
@ -45,41 +45,23 @@
|
||||||
|
|
||||||
'local' => [
|
'local' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'root' => storage_path('app'),
|
'root' => storage_path('app'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'ftp' => [
|
'public' => [
|
||||||
'driver' => 'ftp',
|
'driver' => 'local',
|
||||||
'host' => 'ftp.example.com',
|
'root' => storage_path('app/public'),
|
||||||
'username' => 'your-username',
|
'visibility' => 'public',
|
||||||
'password' => 'your-password',
|
|
||||||
|
|
||||||
// Optional FTP Settings...
|
|
||||||
// 'port' => 21,
|
|
||||||
// 'root' => '',
|
|
||||||
// 'passive' => true,
|
|
||||||
// 'ssl' => true,
|
|
||||||
// 'timeout' => 30,
|
|
||||||
],
|
],
|
||||||
|
|
||||||
's3' => [
|
's3' => [
|
||||||
'driver' => 's3',
|
'driver' => 's3',
|
||||||
'key' => 'your-key',
|
'key' => 'your-key',
|
||||||
'secret' => 'your-secret',
|
'secret' => 'your-secret',
|
||||||
'region' => 'your-region',
|
'region' => 'your-region',
|
||||||
'bucket' => 'your-bucket',
|
'bucket' => 'your-bucket',
|
||||||
],
|
],
|
||||||
|
|
||||||
'rackspace' => [
|
|
||||||
'driver' => 'rackspace',
|
|
||||||
'username' => 'your-username',
|
|
||||||
'key' => 'your-key',
|
|
||||||
'container' => 'your-container',
|
|
||||||
'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/',
|
|
||||||
'region' => 'IAD',
|
|
||||||
'url_type' => 'publicURL',
|
|
||||||
],
|
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue