From b635371d52e2dccce01e61811eb01ed7bad652ea Mon Sep 17 00:00:00 2001 From: muxator Date: Tue, 21 Aug 2018 21:57:13 +0200 Subject: [PATCH] settings: the default dirty.db location should be var/dirty.db This is the location that is choosen by default when Etherpad starts with no settings.json file. It was different than the one contained into setting.json.template. --- src/node/utils/Settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/utils/Settings.js b/src/node/utils/Settings.js index 08ace60ca..7bbfc6d07 100644 --- a/src/node/utils/Settings.js +++ b/src/node/utils/Settings.js @@ -78,7 +78,7 @@ exports.dbType = "dirty"; /** * This setting is passed with dbType to ueberDB to set up the database */ -exports.dbSettings = { "filename" : path.join(exports.root, "dirty.db") }; +exports.dbSettings = { "filename" : path.join(exports.root, "var/dirty.db") }; /** * The default Text of a new pad