Browse Source

Some swift v3 example config

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
tags/v14.0.0beta1
Roeland Jago Douma 6 years ago
parent
commit
ae720b3881
No account linked to committer's email address
1 changed files with 22 additions and 0 deletions
  1. 22
    0
      config/config.sample.php

+ 22
- 0
config/config.sample.php View File

@@ -1214,6 +1214,28 @@ $CONFIG = array(
],
],

/**
* To use swift V3
*/
'objectstore' => [
'class' => 'OC\\Files\\ObjectStore\\Swift',
'arguments' => [
'autocreate' => true,
'user' => [
'name' => 'swift',
'password' => 'swift',
'domain' => [
'name' => 'default',
]
],
'tenantName' => 'service',
'serviceName' => 'swift',
'region' => 'regionOne',
'url' => "http://yourswifthost:5000/v3",
'bucket' => 'nextcloud'
],
],


/**
* Sharing

Loading…
Cancel
Save