Dwelling/config.example.js

30 lines
579 B
JavaScript
Raw Normal View History

2021-05-03 02:49:33 +04:00
const base_host = "127.0.0.1";
2021-02-10 01:01:50 +04:00
exports.dwelling = {}
exports.dwelling.port = 3200;
2021-05-03 02:49:33 +04:00
exports.dwelling.host = base_host;
2021-02-10 01:01:50 +04:00
exports.dwelling.database = {
host: "192.168.0.1",
database: "db",
user: "user",
password: "password",
timezone: "Z" };
2021-02-10 01:01:50 +04:00
exports.dwelling.guestbook = {}
exports.dwelling.guestbook.owner = "Owner";
2021-05-03 02:49:33 +04:00
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";