document azure primary storage

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman
2022-11-18 15:54:35 +01:00
committed by Daniel Kesselberg
parent c773ada82e
commit 98391da047

View File

@@ -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
------------------------