Example config updated to most recent.

This commit is contained in:
Alexander Andreev 2021-05-03 02:49:33 +04:00
parent 7c29f8eaaa
commit e440ffaf13
Signed by: Arav
GPG Key ID: 610DF2574456329F

View File

@ -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",
@ -15,3 +16,15 @@ exports.dwelling.guestbook = {}
exports.dwelling.guestbook.owner = "Owner";
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";