From d695f729637475658172a8b0771a1e16b7bc3fea Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Fri, 1 Feb 2019 09:55:26 +0200 Subject: [PATCH] Fix the default configuration SQLite db path (#143) --- config.cfg | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.cfg b/config.cfg index 6ddd230..934fcb1 100644 --- a/config.cfg +++ b/config.cfg @@ -26,8 +26,7 @@ debug = false engine = "sqlite3" # Connection string, filename for sqlite3 and postgres://$username:$password@$host/$db_name for postgres # Please note that the default Docker image uses path /var/lib/acme-dns/acme-dns.db for sqlite3 -#connection = "/var/lib/acme-dns/acme-dns.db" -connection = "acme-dns.db" +connection = "/var/lib/acme-dns/acme-dns.db" # connection = "postgres://user:password@localhost/acmedns_db" [api]