chore(administration): Generate system config documentation from config.sample.php

This commit is contained in:
Nextcloud bot
2025-12-04 02:53:42 +00:00
parent 41bb95e47a
commit b1fd3e7dad

View File

@@ -2757,6 +2757,30 @@ objectstore
To use swift V3
objectstore
^^^^^^^^^^^
::
'objectstore' => [
'class' => 'OC\\Files\\ObjectStore\\S3',
'arguments' => [
'bucket' => 'nextcloud',
'key' => 'your-access-key',
'secret' => 'your-secret-key',
'hostname' => 's3.example.com',
'port' => 443,
'use_ssl' => true,
'region' => 'us-east-1',
// optional: Maximum number of retry attempts for failed S3 requests
// Default: 5
'retriesMaxAttempts' => 5,
],
],
To use S3 object storage
objectstore.multibucket.preview-distribution
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^