Update apps/files_external/lib/config.php

Adding support for SFTP mounts
This commit is contained in:
hkjolhede 2012-12-26 18:03:16 +01:00
parent 180ab42c06
commit 6aded84f10
1 changed files with 9 additions and 1 deletions

View File

@ -103,7 +103,15 @@ class OC_Mount_Config {
'user' => 'Username',
'password' => '*Password',
'root' => '&Root',
'secure' => '!Secure https://'));
'secure' => '!Secure https://'));
$backends['OC_Filestorage_SFTP']=array(
'backend' => 'SFTP',
'configuration' => array(
'host' => 'URL',
'user' => 'Username',
'password' => '*Password',
'root' => '&Root'));
return($backends);
}