mirror of
https://github.com/eliasstepanik/filesystem-livesync.git
synced 2026-01-11 13:38:30 +00:00
minor documentation updates
This commit is contained in:
parent
102d982864
commit
e49be551f5
@ -16,18 +16,18 @@ Assuming a folder at `/tmp/data` was going to store your config and vaults, writ
|
|||||||
"server": {
|
"server": {
|
||||||
"uri": "http://example-uri/private1_vault",
|
"uri": "http://example-uri/private1_vault",
|
||||||
"auth": {
|
"auth": {
|
||||||
"username": "couch_db_username",
|
"username": "couchdb_username",
|
||||||
"password": "couch_db_password",
|
"password": "couchdb_password",
|
||||||
"passphrase": "passphrase_of_private_vault"
|
"passphrase": ""
|
||||||
},
|
},
|
||||||
"path": "shared/"
|
"initialScan": true
|
||||||
},
|
},
|
||||||
"local": {
|
"local": {
|
||||||
"path": "/data/vault1",
|
"path": "/data/vault1",
|
||||||
"processor": "utils/build.sh",
|
"initialScan": true
|
||||||
"initialScan": false
|
|
||||||
},
|
},
|
||||||
"auto_reconnect": true
|
"auto_reconnect": true,
|
||||||
|
"sync_on_connect": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@ -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"
|
"passphrase": "passphrase_of_private_vault" // Required -- leave empty if no passphrase
|
||||||
},
|
},
|
||||||
"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.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user