config.php 819 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. return array(
  3. 'ftp'=>array(
  4. 'run'=>false,
  5. 'host'=>'localhost',
  6. 'user'=>'test',
  7. 'password'=>'test',
  8. 'root'=>'/test',
  9. ),
  10. 'webdav'=>array(
  11. 'run'=>false,
  12. 'host'=>'localhost',
  13. 'user'=>'test',
  14. 'password'=>'test',
  15. 'root'=>'/owncloud/files/webdav.php',
  16. ),
  17. 'google'=>array(
  18. 'run'=>false,
  19. 'consumer_key'=>'anonymous',
  20. 'consumer_secret'=>'anonymous',
  21. 'token'=>'test',
  22. 'token_secret'=>'test',
  23. 'root'=>'/google',
  24. ),
  25. 'swift'=>array(
  26. 'run'=>false,
  27. 'user'=>'test:tester',
  28. 'token'=>'testing',
  29. 'host'=>'localhost:8080/auth',
  30. 'root'=>'/',
  31. ),
  32. 'smb'=>array(
  33. 'run'=>false,
  34. 'user'=>'test',
  35. 'password'=>'test',
  36. 'host'=>'localhost',
  37. 'share'=>'/test',
  38. 'root'=>'/test/',
  39. ),
  40. 'amazons3'=>array(
  41. 'run'=>false,
  42. 'key'=>'test',
  43. 'secret'=>'test',
  44. 'bucket'=>'bucket',
  45. ),
  46. );