From 8b279b0f04340ae3042beab038fa811bdba85f26 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 22 Jan 2024 05:42:44 +0100 Subject: [PATCH] fix config file --- conf/config.json | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/conf/config.json b/conf/config.json index 2acd288..40194e2 100644 --- a/conf/config.json +++ b/conf/config.json @@ -7,26 +7,23 @@ }, "web": { "files": "__INSTALL_DIR__" - } - }, - "daemon": { - "data": { - "cache": "__DATA_DIR__/cache", - "servers": "__DATA_DIR__/servers" - } - }, - "web": { - "host": "127.0.0.1:__PORT__" - }, - "panel": { + }, "email": { "provider": "smtp", "from": "__EMAIL__", "host": "localhost", "username": "__APP__", "password": "__MAIL_PWD__", - "provider": "", "key": "" } + }, + "daemon": { + "data": { + "cache": "/var/lib/__APP__/cache", + "servers": "/var/lib/__APP__/servers" + } + }, + "web": { + "host": "127.0.0.1:__PORT__" } } \ No newline at end of file