summaryrefslogtreecommitdiff
path: root/docs/backends/azure.rst
diff options
context:
space:
mode:
authorYuval Adam <yuval@segmanta.com>2014-03-20 17:49:16 +0200
committerYuval Adam <yuval@segmanta.com>2014-03-20 17:49:16 +0200
commit75f93a3f7854a7383febd047391e2bfd4caceee0 (patch)
treed5e634ef292c6b84acacc3982dbcaa0d300a346e /docs/backends/azure.rst
Initial git fork of django-storagesHEADmaster
Diffstat (limited to 'docs/backends/azure.rst')
-rw-r--r--docs/backends/azure.rst32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/backends/azure.rst b/docs/backends/azure.rst
new file mode 100644
index 0000000..6433b17
--- /dev/null
+++ b/docs/backends/azure.rst
@@ -0,0 +1,32 @@
+Azure Storage
+===========
+
+A custom storage system for Django using Windows Azure Storage backend.
+
+
+Settings
+*******
+
+``DEFAULT_FILE_STORAGE``
+
+This setting sets the path to the Azure storage class::
+
+ DEFAULT_FILE_STORAGE = 'storages.backends.azure_storage.AzureStorage'
+
+
+``AZURE_ACCOUNT_NAME``
+
+This setting is the Windows Azure Storage Account name, which in many cases is also the first part of the url for instance: http://azure_account_name.blob.core.windows.net/ would mean::
+
+ AZURE_ACCOUNT_NAME = "azure_account_name"
+
+``AZURE_ACCOUNT_KEY``
+
+This is the private key that gives your Django app access to your Windows Azure Account.
+
+``AZURE_CONTAINER``
+
+This is where the files uploaded through your Django app will be uploaded.
+The container must be already created as the storage system will not attempt to create it.
+
+