Merge pull request #9394 from nextcloud/azure-object-store

document azure primary storage
This commit is contained in:
Daniel
2022-12-27 18:30:59 +01:00
committed by GitHub

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