adding several new parameters
This commit is contained in:
parent
6653c2e9cb
commit
32597c380a
|
@ -47,9 +47,14 @@ class OC_Mount_Config {
|
||||||
$backends['\OC\Files\Storage\AmazonS3']=array(
|
$backends['\OC\Files\Storage\AmazonS3']=array(
|
||||||
'backend' => 'Amazon S3',
|
'backend' => 'Amazon S3',
|
||||||
'configuration' => array(
|
'configuration' => array(
|
||||||
'key' => 'Key',
|
'key' => 'Access Key',
|
||||||
'secret' => '*Secret',
|
'secret' => '*Secret Key',
|
||||||
'bucket' => 'Bucket'));
|
'bucket' => 'Bucket',
|
||||||
|
'hostname' => 'Hostname (optional)',
|
||||||
|
'port' => 'Port (optional)',
|
||||||
|
'region' => 'Region (optional)',
|
||||||
|
'use_ssl' => '!Enable SSL',
|
||||||
|
'use_path_style' => '!Enable Path Style'));
|
||||||
|
|
||||||
$backends['\OC\Files\Storage\Dropbox']=array(
|
$backends['\OC\Files\Storage\Dropbox']=array(
|
||||||
'backend' => 'Dropbox',
|
'backend' => 'Dropbox',
|
||||||
|
|
Loading…
Reference in New Issue