2012-03-22 22:56:19 +04:00
|
|
|
<?php
|
|
|
|
return array(
|
|
|
|
'ftp'=>array(
|
2012-04-13 18:01:20 +04:00
|
|
|
'run'=>false,
|
2012-03-22 22:56:19 +04:00
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/test',
|
2012-03-23 21:54:38 +04:00
|
|
|
),
|
|
|
|
'webdav'=>array(
|
2013-02-10 14:39:03 +04:00
|
|
|
'run'=>false,
|
2012-03-23 21:54:38 +04:00
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/owncloud/files/webdav.php',
|
|
|
|
),
|
2012-03-24 23:27:42 +04:00
|
|
|
'google'=>array(
|
2012-04-13 18:01:20 +04:00
|
|
|
'run'=>false,
|
2012-03-24 23:27:42 +04:00
|
|
|
'consumer_key'=>'anonymous',
|
|
|
|
'consumer_secret'=>'anonymous',
|
|
|
|
'token'=>'test',
|
|
|
|
'token_secret'=>'test',
|
|
|
|
'root'=>'/google',
|
2012-04-18 22:54:07 +04:00
|
|
|
),
|
|
|
|
'swift'=>array(
|
2012-05-03 01:44:00 +04:00
|
|
|
'run'=>false,
|
2012-04-18 22:54:07 +04:00
|
|
|
'user'=>'test:tester',
|
|
|
|
'token'=>'testing',
|
2012-10-11 23:13:19 +04:00
|
|
|
'host'=>'localhost.local:8080/auth',
|
2012-04-18 22:54:07 +04:00
|
|
|
'root'=>'/',
|
|
|
|
),
|
2012-05-24 20:22:33 +04:00
|
|
|
'smb'=>array(
|
2013-02-10 14:39:03 +04:00
|
|
|
'run'=>false,
|
2012-05-24 20:22:33 +04:00
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'host'=>'localhost',
|
2012-06-08 03:29:46 +04:00
|
|
|
'share'=>'/test',
|
|
|
|
'root'=>'/test/',
|
2012-05-24 20:22:33 +04:00
|
|
|
),
|
2012-05-17 05:51:45 +04:00
|
|
|
'amazons3'=>array(
|
|
|
|
'run'=>false,
|
|
|
|
'key'=>'test',
|
|
|
|
'secret'=>'test',
|
|
|
|
'bucket'=>'bucket',
|
|
|
|
),
|
2012-10-06 15:43:34 +04:00
|
|
|
'dropbox' => array (
|
|
|
|
'run'=>false,
|
|
|
|
'root'=>'owncloud',
|
|
|
|
'configured' => 'true',
|
|
|
|
'app_key' => '',
|
|
|
|
'app_secret' => '',
|
|
|
|
'token' => '',
|
|
|
|
'token_secret' => ''
|
2013-02-09 23:34:21 +04:00
|
|
|
),
|
|
|
|
'sftp' => array (
|
|
|
|
'run'=>false,
|
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/test'
|
2012-10-06 15:43:34 +04:00
|
|
|
)
|
2012-03-22 22:56:19 +04:00
|
|
|
);
|