Skip to content

Commit 3fc151d

Browse files
committed
chore(administration): Generate system config documentation from config.sample.php
1 parent 98c138e commit 3fc151d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

admin_manual/configuration_server/config_sample_php_parameters.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3000,6 +3000,30 @@ objectstore
30003000

30013001
To use Swift V3
30023002

3003+
objectstore
3004+
^^^^^^^^^^^
3005+
3006+
3007+
::
3008+
3009+
'objectstore' => [
3010+
'class' => 'OC\\Files\\ObjectStore\\S3',
3011+
'arguments' => [
3012+
'bucket' => 'nextcloud',
3013+
'key' => 'your-access-key',
3014+
'secret' => 'your-secret-key',
3015+
'hostname' => 's3.example.com',
3016+
'port' => 443,
3017+
'use_ssl' => true,
3018+
'region' => 'us-east-1',
3019+
// optional: Maximum number of retry attempts for failed S3 requests
3020+
// Default: 5
3021+
'retriesMaxAttempts' => 5,
3022+
],
3023+
],
3024+
3025+
To use S3 object storage
3026+
30033027
objectstore.multibucket.preview-distribution
30043028
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30053029

0 commit comments

Comments
 (0)