You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
<?php
|
|
|
|
return [
|
|
'local' => [
|
|
'type' => 'Local',
|
|
'root' => storage_path('app'),
|
|
],
|
|
's3' => [
|
|
'type' => 'AwsS3',
|
|
'key' => '',
|
|
'secret' => '',
|
|
'region' => 'us-east-1',
|
|
'bucket' => '',
|
|
'root' => '',
|
|
],
|
|
'gcs' => [
|
|
'type' => 'Gcs',
|
|
'key' => '',
|
|
'secret' => '',
|
|
'bucket' => '',
|
|
'root' => '',
|
|
],
|
|
'rackspace' => [
|
|
'type' => 'Rackspace',
|
|
'username' => '',
|
|
'key' => '',
|
|
'container' => '',
|
|
'zone' => '',
|
|
'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/',
|
|
'root' => '',
|
|
],
|
|
'dropbox' => [
|
|
'type' => 'Dropbox',
|
|
'token' => '',
|
|
'key' => '',
|
|
'secret' => '',
|
|
'app' => '',
|
|
'root' => '',
|
|
],
|
|
'ftp' => [
|
|
'type' => 'Ftp',
|
|
'host' => '',
|
|
'username' => '',
|
|
'password' => '',
|
|
'port' => 21,
|
|
'passive' => true,
|
|
'ssl' => true,
|
|
'timeout' => 30,
|
|
'root' => '',
|
|
],
|
|
'sftp' => [
|
|
'type' => 'Sftp',
|
|
'host' => '',
|
|
'username' => '',
|
|
'password' => '',
|
|
'port' => 21,
|
|
'timeout' => 10,
|
|
'privateKey' => '',
|
|
'root' => '',
|
|
],
|
|
];
|