mirror of https://github.com/perkeep/perkeep.git
31 lines
725 B
Plaintext
31 lines
725 B
Plaintext
|
{
|
||
|
"prefixes": {
|
||
|
"/": {
|
||
|
"type": "filesystem",
|
||
|
"typeArgs": {
|
||
|
"path": "/home/foo/var/camliroot"
|
||
|
},
|
||
|
"syncTo": ["/raw-amazon/", "/indexer/"],
|
||
|
"requiredForConsistency": ["/indexer/"],
|
||
|
"enableSharing": true
|
||
|
},
|
||
|
"/raw-amazon/": {
|
||
|
"type": "s3",
|
||
|
"typeArgs": {
|
||
|
"bucket": "bucket-plain",
|
||
|
"aws_access_key": "xxx",
|
||
|
"aws_secret_access_key": "yyy",
|
||
|
}
|
||
|
},
|
||
|
"/indexer/": {
|
||
|
"type": "mysqlindexer",
|
||
|
"typeArgs": {
|
||
|
"database": "devcamlistore",
|
||
|
"user": "root",
|
||
|
"password": "root",
|
||
|
"host": "127.0.0.1"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|