summaryrefslogtreecommitdiff
path: root/docs/configuration-config-file.md
diff options
context:
space:
mode:
authorChristian Bläul2019-08-17 11:40:53 +0200
committerChristian Bläul2019-08-17 11:40:53 +0200
commit29e1ff7699b86c327940153ba9dce0fc23794310 (patch)
tree646bdebccdb6b7699b34f4f19ea8ccab35b6799c /docs/configuration-config-file.md
parent60d6a6a15dd029a40d5f267d3143febb7fb4afba (diff)
Documentation: improved dbURL description
Signed-off-by: Christian Bläul <christian@blaeul.de>
Diffstat (limited to 'docs/configuration-config-file.md')
-rw-r--r--docs/configuration-config-file.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/configuration-config-file.md b/docs/configuration-config-file.md
index bf8d90ba..407eb9e3 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 will be overridden. |
+| `dbURL` | `mysql://localhost:3306/database` | Set the db in URL style. If set, then the relevant `db` config entries 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. Available options: `debug`, `verbose`, `info`, `warn`, `error` |
| `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)|