-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
34 lines (34 loc) · 867 Bytes
/
config.json.example
File metadata and controls
34 lines (34 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"virtualBucket": "mybucket",
"readMode": "PRIMARY_FALLBACK",
"writeMode": "MULTI_SYNC",
"primaryBackendName": "aws-s3-primary",
"backends": [
{
"name": "aws-s3-primary",
"type": "s3",
"region": "us-east-1",
"bucket": "my-primary-bucket"
},
{
"name": "minio-local",
"type": "s3",
"region": "us-east-1",
"bucket": "replicat4",
"endpoint": "http://localhost:9000",
"force_path_style": true,
"access_key_id": "minioadmin",
"secret_access_key": "minioadmin"
},
{
"name": "digitalocean-spaces",
"type": "s3",
"region": "nyc3",
"bucket": "my-space-name",
"endpoint": "https://nyc3.digitaloceanspaces.com",
"force_path_style": false,
"access_key_id": "YOUR_SPACES_KEY",
"secret_access_key": "YOUR_SPACES_SECRET"
}
]
}