1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- return array(
- 'ftp'=>array(
- 'run'=>false,
- 'host'=>'localhost',
- 'user'=>'test',
- 'password'=>'test',
- 'root'=>'/test',
- ),
- 'webdav'=>array(
- 'run'=>false,
- 'host'=>'localhost',
- 'user'=>'test',
- 'password'=>'test',
- 'root'=>'/owncloud/files/webdav.php',
- ),
- 'google'=>array(
- 'run'=>false,
- 'consumer_key'=>'anonymous',
- 'consumer_secret'=>'anonymous',
- 'token'=>'test',
- 'token_secret'=>'test',
- 'root'=>'/google',
- ),
- 'swift'=>array(
- 'run'=>false,
- 'user'=>'test:tester',
- 'token'=>'testing',
- 'host'=>'localhost:8080/auth',
- 'root'=>'/',
- ),
- 'smb'=>array(
- 'run'=>false,
- 'user'=>'test',
- 'password'=>'test',
- 'host'=>'localhost',
- 'share'=>'/test',
- 'root'=>'/test/',
- ),
- 'amazons3'=>array(
- 'run'=>false,
- 'key'=>'test',
- 'secret'=>'test',
- 'bucket'=>'bucket',
- ),
- );
|