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