From 3fc151d31522d650444b8d605cd15b8e78079bbb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 20 Nov 2025 02:59:59 +0000 Subject: [PATCH] chore(administration): Generate system config documentation from config.sample.php --- .../config_sample_php_parameters.rst | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 27ecd6876..4fa959779 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -3000,6 +3000,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 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^