update Do 7. Mai 13:31:01 CEST 2020
This commit is contained in:
parent
d144a73526
commit
3d6ba81215
@ -16,6 +16,8 @@ app_cfg.global = {
|
|||||||
ip_auth_range: ['::ffff:172.16.5.0/24', '::ffff:192.168.2.0/24'],
|
ip_auth_range: ['::ffff:172.16.5.0/24', '::ffff:192.168.2.0/24'],
|
||||||
saltRounds: 10,
|
saltRounds: 10,
|
||||||
sessionsecret: '0987654321abcdef#xyz',
|
sessionsecret: '0987654321abcdef#xyz',
|
||||||
|
backup_rmld: true,
|
||||||
|
backup_path: '/bkp/',
|
||||||
app_id: process.pid
|
app_id: process.pid
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -24,14 +26,27 @@ app_cfg.public = {
|
|||||||
company: 'Leitstelle Lausitz',
|
company: 'Leitstelle Lausitz',
|
||||||
version: 'Version 1.2',
|
version: 'Version 1.2',
|
||||||
map_tile: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
|
map_tile: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
|
||||||
map_attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
map_attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
|
||||||
// TODO: Link Impressium
|
// TODO: Link Impressium
|
||||||
// TODO: Link Datenschutzerklärung
|
own_imprint: false,
|
||||||
|
url_imprint: 'https://www.nix.nix/impressium',
|
||||||
|
// TODO: Link Datenschutzerklärung, TLF-Sofort
|
||||||
|
own_privacy: false,
|
||||||
|
url_privacy: 'https://www.nix.nix/datenschutz'
|
||||||
|
};
|
||||||
|
|
||||||
|
app_cfg.api = {
|
||||||
|
secret: 'asdfwert1234567890#',
|
||||||
|
access_list: ['192.168.2.20', '192.168.2.30']
|
||||||
};
|
};
|
||||||
|
|
||||||
app_cfg.remote = {
|
app_cfg.remote = {
|
||||||
api: 'http://localhost:8078/api',
|
endpoint_host: 'localhost',
|
||||||
jwt_secret: 'asdfwert1234567890#'
|
endpoint_port: '8090',
|
||||||
|
endpoint_route: '/api',
|
||||||
|
secret: 'asdfwert1234567890#',
|
||||||
|
allow_mission_type: ['Brandeinsatz', 'Hilfeleistung'],
|
||||||
|
allow_data_type: ['uuid', 'nummer', 'alarmzeit', 'art', 'stichwort', 'sondersignal', 'ort', 'ortsteil', 'wgs84_area']
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = app_cfg;
|
module.exports = app_cfg;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user