From 98391da0471393ad1dc9be1ba0a8f07548d4abd6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 18 Nov 2022 15:54:35 +0100 Subject: [PATCH] document azure primary storage Signed-off-by: Robin Appelman --- .../configuration_files/primary_storage.rst | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/admin_manual/configuration_files/primary_storage.rst b/admin_manual/configuration_files/primary_storage.rst index 38cc616cf..f9882e623 100644 --- a/admin_manual/configuration_files/primary_storage.rst +++ b/admin_manual/configuration_files/primary_storage.rst @@ -150,6 +150,27 @@ The class to be used is :code:`\\OC\\Files\\ObjectStore\\S3` will be made with http://bucket.hostname.domain/, but with path style enabled, requests are made with http://hostname.domain/bucket instead. +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Microsoft Azure Blob Storage +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The Azure Blob Storage backend mounts a container on Microsoft's Azure Blob Storage into the +virtual filesystem. + +The class to be used is :code:`\\OC\\Files\\ObjectStore\\Azure` + +:: + + 'objectstore' => [ + 'class' => '\\OC\\Files\\ObjectStore\\Azure', + 'arguments' => [ + 'container' => 'nextcloud', + 'autocreate' => true, + 'account_name' => 'account_name', + 'account_key' => 'xxxxxxxxxx' + ], + ], + ------------------------ Multibucket Object Store ------------------------