From a2feb95904b14d6057db54e5e638544a186df084 Mon Sep 17 00:00:00 2001 From: Alexander Arav Andreev Date: Wed, 10 Feb 2021 01:58:04 +0400 Subject: [PATCH] Fixed problem with timezones. Turned out that I forgot to tell what timezone db server do use. --- config.example.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.example.js b/config.example.js index 2170302..9056e72 100644 --- a/config.example.js +++ b/config.example.js @@ -8,7 +8,8 @@ exports.dwelling.database = { host: "192.168.0.1", database: "db", user: "user", - password: "password" }; + password: "password", + timezone: "Z" }; exports.dwelling.guestbook = {}