comparison Sphinx/source/plugins/object-storage.rst @ 685:6bc19941ffcd

AWS doc
author Alain Mazy <am@osimis.io>
date Fri, 21 May 2021 10:15:43 +0200
parents 314466d6f7f7
children 1c1afe3cb037
comparison
equal deleted inserted replaced
684:96574b57249a 685:6bc19941ffcd
134 Sample configuration:: 134 Sample configuration::
135 135
136 "AwsS3Storage" : { 136 "AwsS3Storage" : {
137 "BucketName": "test-orthanc-s3-plugin", 137 "BucketName": "test-orthanc-s3-plugin",
138 "Region" : "eu-central-1", 138 "Region" : "eu-central-1",
139 "AccessKey" : "AKXXX", 139 "AccessKey" : "AKXXX", // optional: if not specified, the plugin will use the default credentials manager (available from version 1.3.0)
140 "SecretKey" : "RhYYYY", 140 "SecretKey" : "RhYYYY", // optional: if not specified, the plugin will use the default credentials manager (available from version 1.3.0)
141 "Endpoint": "", // custom endpoint 141 "Endpoint": "", // optional: custom endpoint
142 "ConnectionTimeout": 30, // connection timeout in seconds 142 "ConnectionTimeout": 30, // optional: connection timeout in seconds
143 "RequestTimeout": 1200, // request timeout in seconds (max time to upload/download a file) 143 "RequestTimeout": 1200, // optional: request timeout in seconds (max time to upload/download a file)
144 "RootPath": "", // see below 144 "RootPath": "", // optional: see below
145 "MigrationFromFileSystemEnabled": false, // see below 145 "MigrationFromFileSystemEnabled": false, // optional: see below
146 "StorageStructure": "flat", // see below 146 "StorageStructure": "flat", // optional: see below
147 "VirtualAddressing": true // see the section related to MinIO 147 "VirtualAddressing": true, // optional: see the section related to MinIO
148 "StorageEncryption" : {} // optional: see the section related to encryption
148 } 149 }
149 150
150 The **EndPoint** configuration is used when accessing an S3 compatible cloud provider. I.e. here is a configuration to store data on Scaleway:: 151 The **EndPoint** configuration is used when accessing an S3 compatible cloud provider. I.e. here is a configuration to store data on Scaleway::
151 152
152 "AwsS3Storage" : { 153 "AwsS3Storage" : {