summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorChristian Berendt <berendt@b1-systems.de>2013-07-03 17:58:44 +0200
committerChristian Berendt <berendt@b1-systems.de>2013-07-03 17:58:44 +0200
commit32597c380a930510c4f4c5815eb812e011401509 (patch)
tree85237f7c9afe97ea3d2da96d27c8dc46aaf43d08 /apps
parent6653c2e9cbbfd70486c3ee07e5312fe4b71a17d6 (diff)
downloadnextcloud-server-32597c380a930510c4f4c5815eb812e011401509.tar.gz
nextcloud-server-32597c380a930510c4f4c5815eb812e011401509.zip
adding several new parameters
Diffstat (limited to 'apps')
-rwxr-xr-xapps/files_external/lib/config.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 4cb9b7c8ecd..9e3a4c27ab3 100755
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -47,9 +47,14 @@ class OC_Mount_Config {
$backends['\OC\Files\Storage\AmazonS3']=array(
'backend' => 'Amazon S3',
'configuration' => array(
- 'key' => 'Key',
- 'secret' => '*Secret',
- 'bucket' => 'Bucket'));
+ 'key' => 'Access Key',
+ 'secret' => '*Secret Key',
+ '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(
'backend' => 'Dropbox',