"/index/": {
    "handler": "storage-index",
    "handlerArgs": {
        "blobSource": "/bs/",
        "keepGoing": false,
        "reindex": false,
        "storage": {
            "database": "perkeep",
            "host":     "localhost",
            "password": "pk-db-password",
            "type":     "postgres",
            "sslmode":  "disable",
            "user":     "pk-db-user"
        }
    }
},
"/sync/": {
    "handler": "sync",
    "handlerArgs": {
        "from": "/bs/",
        "queue": {
            "database": "pk_xxx_syncto_index",
            "host":     "localhost",
            "password": "pk-db-password",
            "type":     "postgres",
            "sslmode":  "disable",
            "user":     "pk-db-user"
        },
        "to": "/index/"
    }
},
"/bs/": {
    "handler": "storage-blobpacked",
    "handlerArgs": {
        "keepGoing": false,
        "largeBlobs": "/bs-packed/",
        "metaIndex": {
           "database": "pk_xxx_blobpacked",
           "host":     "localhost",
           "password": "pk-db-password",
           "type":     "postgres",
           "sslmode":  "disable",
           "user":     "pk-db-user"
        },
        "smallBlobs": "/bs-loose/"
    }
},

