github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/pkg/serverconfig/testdata/justblobs-want.json (about) 1 { 2 "listen": "localhost:3179", 3 "auth": "userpass:camlistore:pass3179", 4 "https": false, 5 "prefixes": { 6 "/": { 7 "handler": "root", 8 "handlerArgs": { 9 "blobRoot": "/bs/", 10 "statusRoot": "/status/", 11 "stealth": false 12 } 13 }, 14 15 "/setup/": { 16 "handler": "setup" 17 }, 18 19 "/status/": { 20 "handler": "status" 21 }, 22 23 "/share/": { 24 "handler": "share", 25 "handlerArgs": { 26 "blobRoot": "/bs/" 27 } 28 }, 29 30 "/sighelper/": { 31 "handler": "jsonsign", 32 "handlerArgs": { 33 "secretRing": "/path/to/secring", 34 "keyId": "26F5ABDA", 35 "publicKeyDest": "/bs/" 36 } 37 }, 38 39 "/bs/": { 40 "handler": "storage-filesystem", 41 "handlerArgs": { 42 "path": "/tmp/blobs" 43 } 44 }, 45 46 "/cache/": { 47 "handler": "storage-filesystem", 48 "handlerArgs": { 49 "path": "/tmp/blobs/cache" 50 } 51 } 52 53 } 54 55 }