diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-03-22 19:56:19 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-03-22 19:56:19 +0100 |
commit | 82b54938e32a980d3d268a63fdf56598f12e2ff4 (patch) | |
tree | bf8ff63feebeb83e141533afe8b3f8512c948453 /apps/files_remote/tests/config.php | |
parent | 0a93d4eccf405f7145694a21c4412ba213b50a4a (diff) | |
download | nextcloud-server-82b54938e32a980d3d268a63fdf56598f12e2ff4.tar.gz nextcloud-server-82b54938e32a980d3d268a63fdf56598f12e2ff4.zip |
ftp storage backend
Diffstat (limited to 'apps/files_remote/tests/config.php')
-rw-r--r-- | apps/files_remote/tests/config.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/files_remote/tests/config.php b/apps/files_remote/tests/config.php new file mode 100644 index 00000000000..54105782919 --- /dev/null +++ b/apps/files_remote/tests/config.php @@ -0,0 +1,9 @@ +<?php +return array( + 'ftp'=>array( + 'host'=>'localhost', + 'user'=>'test', + 'password'=>'test', + 'root'=>'/test', + ) +); |