From df3b42121f297c326fa8b481215252603c8937c4 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 2 Nov 2021 20:08:41 +0000 Subject: Tweak HTTPS setup stuff. Serve both HTTP and HTTPS without redirection. --- connect-better-sqlite3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'connect-better-sqlite3.js') diff --git a/connect-better-sqlite3.js b/connect-better-sqlite3.js index de858ed..008114b 100644 --- a/connect-better-sqlite3.js +++ b/connect-better-sqlite3.js @@ -30,7 +30,7 @@ module.exports = function (session) { let db = new SQLite(db_path, options.mode); db.pragma("journal_mode = WAL"); - db.pragma("synchronous = NORMAL"); + db.pragma("synchronous = OFF"); db.exec("CREATE TABLE IF NOT EXISTS "+table+" (sid PRIMARY KEY, expires INTEGER, sess TEXT)"); db.exec("DELETE FROM "+table+" WHERE "+now()+" > expires"); db.exec("VACUUM"); -- cgit v1.2.3