updated docs for passphrase to be removed if none set

This commit is contained in:
Spencer Heywood 2022-04-26 10:18:55 -06:00
parent bcdc877a1d
commit b37f78e55d
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ Assuming a folder at `/tmp/data` was going to store your config and vaults, writ
"auth": { "auth": {
"username": "couchdb_username", "username": "couchdb_username",
"password": "couchdb_password", "password": "couchdb_password",
"passphrase": "" "passphrase": "mypassphrase" // Remove if no passphrase is set for Vault
}, },
"initialScan": true "initialScan": true
}, },

View File

@ -28,7 +28,7 @@ The configuration file consists of the following structure.
"auth": { "auth": {
"username": "username_of_private_vault", "username": "username_of_private_vault",
"password": "password_of_private_vault", "password": "password_of_private_vault",
"passphrase": "passphrase_of_private_vault" // Required -- leave empty if no passphrase "passphrase": "passphrase_of_private_vault" // Remove if no passphrase is set for your vault
}, },
"path": "shared/", // All documents under this path will synchronized. "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. "initialScan": false // If you enable this, all server files will be synchronized to local storage once when daemon has been started.