Updated path stuff due to release of keeweb fix

This commit is contained in:
Tim Stallard 2017-02-11 11:07:49 +00:00
parent 8cd22e5ebf
commit ff8d54b726

View File

@ -64,8 +64,6 @@ Downloading KeeWeb via Git also makes it easy to get any new versions - just run
KeeWeb will now be accessible at https://example.com/keeweb/. However, currently you manually have to specify the WebDav file, which is a pain - KeeWeb allows us to provide a configuration file for this. You'll want to create a file called `config.json` in your DocumentRoot (not inside the keeweb directory), and add the following JSON, adding sections for each database file as required. You can read more about this file on the [KeeWeb wiki](https://github.com/keeweb/keeweb/wiki/Configuration).
*Note: due to [a bug](https://github.com/keeweb/keeweb/issues/435) in KeeWeb, you'll need to use a full URL for the path until the next version is released.*
``` json
{
"settings": {},
@ -73,7 +71,7 @@ KeeWeb will now be accessible at https://example.com/keeweb/. However, currently
{
"storage": "webdav",
"name": "Database Name",
"path": "https://example.com/webdav/DatabaseName.kdbx"
"path": "/webdav/DatabaseName.kdbx"
}
]
}