From 63760e1a8e5f9020521f2d56c640ef58494d8aad Mon Sep 17 00:00:00 2001 From: Richter Date: Sun, 10 Mar 2019 09:35:23 +0100 Subject: [PATCH] Update app_cfg.js --- server/app_cfg.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/server/app_cfg.js b/server/app_cfg.js index 8a79bbf..bdf8bde 100644 --- a/server/app_cfg.js +++ b/server/app_cfg.js @@ -1,8 +1,8 @@ var app_cfg = {}; app_cfg.global = { - webport: 3000, - httpsport: 3443, + http_port: 3000, + https_port: 3443, udpport: 60233, database: './database.sqlite3', soundpath: '/public/media/', @@ -13,8 +13,6 @@ app_cfg.global = { ip_auth_range: ['::ffff:172.16.5.0/24', '::ffff:192.168.2.0/24'], saltRounds: 10, sessionsecret: '0987654321abcdef#xyz', - // TODO: eindeutige ID/Version für Anwendung hinterlegen - // TODO: Karten-URL für Client festlegen app_id: process.pid, map_tile: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png' };