comparison README.md @ 6:393fcf337462

AWS: added 3 configurations: Endpoint, ConnectionTimeout, RequestTimeout
author Alain Mazy
date Thu, 09 Jul 2020 10:40:44 +0200
parents 4e326cea533e
children 2a02b21f0a19
comparison
equal deleted inserted replaced
5:4e326cea533e 6:393fcf337462
98 ``` 98 ```
99 "AwsS3Storage" : { 99 "AwsS3Storage" : {
100 "BucketName": "test-orthanc-s3-plugin", 100 "BucketName": "test-orthanc-s3-plugin",
101 "Region" : "eu-central-1", 101 "Region" : "eu-central-1",
102 "AccessKey" : "AKXXX", 102 "AccessKey" : "AKXXX",
103 "SecretKey" : "RhYYYY" 103 "SecretKey" : "RhYYYY",
104 "Endpoint": "", // optional: custom endpoint
105 "ConnectionTimeout": 30, // optional: connection timeout in seconds
106 "RequestTimeout": 1200 // optional: request timeout in seconds (max time to upload/download a file)
104 } 107 }
105 ``` 108 ```