From 4bb5e265ab0ff6eb879299295e3cb6cc0883a0fd Mon Sep 17 00:00:00 2001 From: Julien Schmidt <julienschmidt@users.noreply.github.com> Date: Fri, 28 Sep 2018 16:40:50 +0800 Subject: [PATCH] README: use absolute path for sqlite DB in example config (#116) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c62320d..5efbfd5 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ debug = false # Database engine to use, sqlite3 or postgres engine = "sqlite3" # Connection string, filename for sqlite3 and postgres://$username:$password@$host/$db_name for postgres -connection = "acme-dns.db" +connection = "/var/lib/acme-dns/acme-dns.db" # connection = "postgres://user:password@localhost/acmedns_db" [api] -- GitLab