added IP and MapTile

This commit is contained in:
Richter 2019-03-05 16:30:04 +01:00
parent 3b4afcfcc3
commit fae6afcf0c

View File

@ -8,11 +8,13 @@ app_cfg.global = {
mediapath: '/media/', mediapath: '/media/',
defaultuser: 'me', defaultuser: 'me',
defaultpass: '123', defaultpass: '123',
defaultuserip: '127.0.0.1',
saltRounds: 10, saltRounds: 10,
sessionsecret: '0987654321abcdef#xyz', sessionsecret: '0987654321abcdef#xyz',
// TODO: eindeutige ID/Version für Anwendung hinterlegen // TODO: eindeutige ID/Version für Anwendung hinterlegen
// TODO: Karten-URL für Client festlegen // 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; module.exports = app_cfg;