From 7b40e99aec28ef0a06457712f6f758a27a9c5665 Mon Sep 17 00:00:00 2001 From: Juan Font Alonso Date: Tue, 19 Oct 2021 23:45:20 +0200 Subject: [PATCH] Added notes on SQLite --- docs/Configuration.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index 6074f2b4..a9286778 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -38,6 +38,7 @@ ephemeral_node_inactivity_timeout": "30m" `ephemeral_node_inactivity_timeout` is the timeout after which inactive ephemeral node records will be deleted from the database. The default is 30 minutes. This value must be higher than 65 seconds (the keepalive timeout for the HTTP long poll is 60 seconds, plus a few seconds to avoid race conditions). +PostgresSQL ```yaml db_host: localhost db_port: 5432 @@ -46,7 +47,13 @@ db_user: foo db_pass: bar ``` -The fields starting with `db_` are used for the PostgreSQL connection information. +SQLite +```yaml +db_type: sqlite3 +db_path: db.sqlite +``` + +The fields starting with `db_` are used for the DB connection information. ### Running the service via TLS (optional)