diff --git a/docker/README.md b/docker/README.md index b480214..7eab76f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -16,18 +16,18 @@ Assuming a folder at `/tmp/data` was going to store your config and vaults, writ "server": { "uri": "http://example-uri/private1_vault", "auth": { - "username": "couch_db_username", - "password": "couch_db_password", - "passphrase": "passphrase_of_private_vault" + "username": "couchdb_username", + "password": "couchdb_password", + "passphrase": "" }, - "path": "shared/" + "initialScan": true }, "local": { "path": "/data/vault1", - "processor": "utils/build.sh", - "initialScan": false + "initialScan": true }, - "auto_reconnect": true + "auto_reconnect": true, + "sync_on_connect": true } } ``` diff --git a/readme.md b/readme.md index 973c460..2646638 100644 --- a/readme.md +++ b/readme.md @@ -28,7 +28,7 @@ The configuration file consists of the following structure. "auth": { "username": "username_of_private_vault", "password": "password_of_private_vault", - "passphrase": "passphrase_of_private_vault" + "passphrase": "passphrase_of_private_vault" // Required -- leave empty if no passphrase }, "path": "shared/", // All documents under this path will synchronized. "initialScan": false // If you enable this, all server files will be synchronized to local storage once when daemon has been started.