mirror of https://github.com/perkeep/perkeep.git
56 lines
821 B
JSON
56 lines
821 B
JSON
{
|
|
"listen": "localhost:3179",
|
|
"auth": "userpass:camlistore:pass3179",
|
|
"https": false,
|
|
"prefixes": {
|
|
"/": {
|
|
"handler": "root",
|
|
"handlerArgs": {
|
|
"blobRoot": "/bs/",
|
|
"statusRoot": "/status/",
|
|
"stealth": false
|
|
}
|
|
},
|
|
|
|
"/setup/": {
|
|
"handler": "setup"
|
|
},
|
|
|
|
"/status/": {
|
|
"handler": "status"
|
|
},
|
|
|
|
"/share/": {
|
|
"handler": "share",
|
|
"handlerArgs": {
|
|
"blobRoot": "/bs/"
|
|
}
|
|
},
|
|
|
|
"/sighelper/": {
|
|
"handler": "jsonsign",
|
|
"handlerArgs": {
|
|
"secretRing": "/path/to/secring",
|
|
"keyId": "26F5ABDA",
|
|
"publicKeyDest": "/bs/"
|
|
}
|
|
},
|
|
|
|
"/bs/": {
|
|
"handler": "storage-filesystem",
|
|
"handlerArgs": {
|
|
"path": "/tmp/blobs"
|
|
}
|
|
},
|
|
|
|
"/cache/": {
|
|
"handler": "storage-filesystem",
|
|
"handlerArgs": {
|
|
"path": "/tmp/blobs/cache"
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|