Mercurial > hg > orthanc-book
comparison Sphinx/source/plugins/object-storage.rst @ 464:5ea70331c0be
AWS Endpoint doc
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Thu, 09 Jul 2020 11:15:28 +0200 |
parents | fae16ea8b13c |
children | d255e02eb89d |
comparison
equal
deleted
inserted
replaced
463:fae16ea8b13c | 464:5ea70331c0be |
---|---|
125 "Endpoint": "", // optional - currently in mainline version only: custom endpoint | 125 "Endpoint": "", // optional - currently in mainline version only: custom endpoint |
126 "ConnectionTimeout": 30, // optional - currently in mainline version only: connection timeout in seconds | 126 "ConnectionTimeout": 30, // optional - currently in mainline version only: connection timeout in seconds |
127 "RequestTimeout": 1200 // optional - currently in mainline version only: request timeout in seconds (max time to upload/download a file) | 127 "RequestTimeout": 1200 // optional - currently in mainline version only: request timeout in seconds (max time to upload/download a file) |
128 } | 128 } |
129 | 129 |
130 The **EndPoint** configuration is used when accessing an S3 compatible cloud provider. I.e. here is a configuration to store data on Scaleway:: | |
131 | |
132 "AwsS3Storage" : { | |
133 "BucketName": "test-orthanc", | |
134 "Region": "fr-par", | |
135 "AccessKey": "XXX", | |
136 "SecretKey": "YYY", | |
137 "Endpoint": "s3.fr-par.scw.cloud" | |
138 }, | |
139 | |
130 Azure Blob Storage plugin | 140 Azure Blob Storage plugin |
131 ^^^^^^^^^^^^^^^^^^^^^^^^^ | 141 ^^^^^^^^^^^^^^^^^^^^^^^^^ |
132 | 142 |
133 Sample configuration:: | 143 Sample configuration:: |
134 | 144 |