From e7627a723e9782ee283d124ed12b4e065f1068ee Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 4 Apr 2019 02:39:46 -0400 Subject: [PATCH] Remove repeated section Signed-off-by: Roberto Rosario --- docs/chapters/object_storage.rst | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/docs/chapters/object_storage.rst b/docs/chapters/object_storage.rst index 0f1f092922..3ae023ebac 100644 --- a/docs/chapters/object_storage.rst +++ b/docs/chapters/object_storage.rst @@ -29,32 +29,3 @@ to use a S3 style storage for documents. '{access_key: , secret_key: , bucket_name: }' 5. Save and restart your Mayan EDMS installation for the setting to take effect. - - -Storage -======= -Mayan EDMS stores documents in their original file format only changing the -filename to avoid collision. For best input and output speed use a block -based local filesystem for the ``/media`` sub folder of the path specified by -the MEDIA_ROOT setting. For increased storage capacity use an object storage -filesystem like S3. - -To use a S3 compatible object storage do the following: - -* Install the Python packages ``django-storages`` and ``boto3``: - - * Using Python:: - - pip install django-storages boto3 - - * Using Docker:: - - -e MAYAN_PIP_INSTALLS='django-storages boto3' - -On the Mayan EDMS user interface, go to ``System``, ``Setup``, ``Settings``, -``Documents`` and change the following setting: - -* ``DOCUMENTS_STORAGE_BACKEND`` to ``storages.backends.s3boto3.S3Boto3Storage`` -* ``DOCUMENTS_STORAGE_BACKEND_ARGUMENTS`` to ``'{access_key: , secret_key: , bucket_name: }'``. - -Restart Mayan EDMS for the changes to take effect.