From fae6afcf0c3647be945bef929c6785f07a65de5a Mon Sep 17 00:00:00 2001 From: Richter Date: Tue, 5 Mar 2019 16:30:04 +0100 Subject: [PATCH] added IP and MapTile --- server/app_cfg.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/app_cfg.js b/server/app_cfg.js index a5e96ab..6490eed 100644 --- a/server/app_cfg.js +++ b/server/app_cfg.js @@ -8,11 +8,13 @@ app_cfg.global = { mediapath: '/media/', defaultuser: 'me', defaultpass: '123', + defaultuserip: '127.0.0.1', saltRounds: 10, sessionsecret: '0987654321abcdef#xyz', // TODO: eindeutige ID/Version für Anwendung hinterlegen // TODO: Karten-URL für Client festlegen - app_id: process.pid + app_id: process.pid, + map_tile: 'http://a.tile.openstreetmap.org/{z}/{x}/{y}.png' }; module.exports = app_cfg;