From: Itamar Turner-Trauring Date: Thu, 16 May 2013 17:27:28 +0000 (-0400) Subject: Add documentation for Microsoft Azure Blob Service cloud storage backend config. X-Git-Url: https://git.rkrishnan.org/frontends/FTP-and-SFTP.rst?a=commitdiff_plain;h=0c9fab28d65c01beb1a306e4534fbfe70d539515;p=tahoe-lafs%2Ftahoe-lafs.git Add documentation for Microsoft Azure Blob Service cloud storage backend config. --- diff --git a/docs/backends/cloud.rst b/docs/backends/cloud.rst index c580da65..6e0cc15f 100644 --- a/docs/backends/cloud.rst +++ b/docs/backends/cloud.rst @@ -182,3 +182,42 @@ the server's ``tahoe.cfg`` file: The private key you downloaded is stored in a separate file named ``private/googlestorage_private_key``. + + +Microsoft Azure Blob Storage +============================ + +`Microsoft Azure Blob Storage`_ is a block-based storage system provided by +Microsoft. To access the storage system, you will need to `create a storage +account`_. The DNS prefix you choose will be the account name, and either the +resulting primary or secondary keys can be used as the account key; you can +get them by using the "Manage Keys" button at the bottom of the storage +management page. + +.. _Microsoft Azure Blob Storage: http://www.windowsazure.com/en-us/manage/services/storage/ +.. _create a storage account: http://www.windowsazure.com/en-us/develop/python/how-to-guides/blob-service/#create-account + +To enable storing shares in this services, add the following keys to the +server's ``tahoe.cfg`` file: + +``[storage]`` + +``backend = cloud.msazure`` + + This turns off the local filesystem backend and enables use of the cloud + backend with Microsoft Azure. + +``msazure.account_name = (string, required)`` + + This is the account name (subdomain) you chose when creating the account, + e.g. ``mydomain``. + +``msazure.container_name = (string, required)`` + + This controls which container will be used to hold + shares. The Tahoe-LAFS storage server will only modify and access objects + in the configured container. Multiple storage servers cannot share the + same container. + +The private key you downloaded is stored in a separate file named +``private/msazure_account_key``.