From e440ffaf13573c78e785a154b202418f5ea1d707 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Mon, 3 May 2021 02:49:33 +0400 Subject: [PATCH] Example config updated to most recent. --- config.example.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/config.example.js b/config.example.js index 9056e72..76aea0d 100644 --- a/config.example.js +++ b/config.example.js @@ -1,8 +1,9 @@ +const base_host = "127.0.0.1"; exports.dwelling = {} exports.dwelling.port = 3200; -exports.dwelling.host = "127.0.0.1"; +exports.dwelling.host = base_host; exports.dwelling.database = { host: "192.168.0.1", @@ -14,4 +15,16 @@ exports.dwelling.database = { exports.dwelling.guestbook = {} exports.dwelling.guestbook.owner = "Owner"; -exports.dwelling.guestbook.pageSize = 30; \ No newline at end of file +exports.dwelling.guestbook.pageSize = 30; + +exports.radio = {} + +exports.radio.port = 3201; +exports.radio.host = base_host; + +exports.files = {} + +exports.files.port = 3202; +exports.files.host = base_host; + +exports.files.file_path = "/srv/ftp"; \ No newline at end of file