Skip to content

Commit b1fd3e7

Browse files
committed
chore(administration): Generate system config documentation from config.sample.php
1 parent 41bb95e commit b1fd3e7

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
@@ -2757,6 +2757,30 @@ objectstore
27572757

27582758
To use swift V3
27592759

2760+
objectstore
2761+
^^^^^^^^^^^
2762+
2763+
2764+
::
2765+
2766+
'objectstore' => [
2767+
'class' => 'OC\\Files\\ObjectStore\\S3',
2768+
'arguments' => [
2769+
'bucket' => 'nextcloud',
2770+
'key' => 'your-access-key',
2771+
'secret' => 'your-secret-key',
2772+
'hostname' => 's3.example.com',
2773+
'port' => 443,
2774+
'use_ssl' => true,
2775+
'region' => 'us-east-1',
2776+
// optional: Maximum number of retry attempts for failed S3 requests
2777+
// Default: 5
2778+
'retriesMaxAttempts' => 5,
2779+
],
2780+
],
2781+
2782+
To use S3 object storage
2783+
27602784
objectstore.multibucket.preview-distribution
27612785
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27622786

0 commit comments

Comments
 (0)