diff options
author | Christian Bläul | 2019-08-16 23:13:53 +0200 |
---|---|---|
committer | Christian Bläul | 2019-08-17 00:03:04 +0200 |
commit | c065d45da89d212d4a41761f5142c231634b41d8 (patch) | |
tree | 79e5089506dd60aea8b96b356c49ec6d2e6690f9 | |
parent | 9c1665ae5bf3cf38210ffd862d10de9b13bfacdd (diff) |
Documentation of config options: Improve db
Signed-off-by: Christian Bläul <christian@blaeul.de>
Diffstat (limited to '')
-rw-r--r-- | docs/configuration-config-file.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/configuration-config-file.md b/docs/configuration-config-file.md index b233cebe..871e4b31 100644 --- a/docs/configuration-config-file.md +++ b/docs/configuration-config-file.md @@ -26,7 +26,7 @@ to `config.json` before filling in your own details. | --------- | ------ | ----------- | | `allowPDFExport` | `true` | Whether or not PDF export is offered. | | `db` | `{ "dialect": "sqlite", "storage": "./db.codimd.sqlite" }` | set the db configs, [see more here](http://sequelize.readthedocs.org/en/latest/api/sequelize/) | -| `dbURL` | `mysql://localhost:3306/database` | set the db URL; if set, then db config (below) won't be applied | +| `dbURL` | `mysql://localhost:3306/database` | set the db URL; if set, then `db` config will be overridden. | | `forbiddenNoteIDs` | `['robots.txt']` | disallow creation of notes, even if `allowFreeUrl` is `true` | | `loglevel` | `info` | Defines what kind of logs are provided to stdout. | | `imageUploadType` | `imgur`, `s3`, `minio`, `azure`, `lutim` or `filesystem`(default) | Where to upload images. For S3, see our Image Upload Guides for [S3](guides/s3-image-upload.md) or [Minio](guides/minio-image-upload.md)| |