update Sa 13. Jun 21:31:01 CEST 2020
This commit is contained in:
parent
0328cac8f2
commit
5efe1cdd21
@ -41,27 +41,26 @@ app_cfg.rmld = {
|
|||||||
backup_path: '/misc/bkp/'
|
backup_path: '/misc/bkp/'
|
||||||
};
|
};
|
||||||
|
|
||||||
// Socket-Schnittstelle um Daten von anderen Clients zu empfangen
|
// Schnittstelle um Daten von anderen Clients zu empfangen
|
||||||
app_cfg.api = {
|
app_cfg.api = {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
secret: 'asdfwert1234567890#',
|
secret: 'asdfwert1234567890#',
|
||||||
access_list: ['192.168.2.20', '192.168.2.30']
|
access_list: ['192.168.2.20', '192.168.2.30']
|
||||||
};
|
};
|
||||||
|
|
||||||
// Socket-Schnittstelle um Daten an andere Server zu senden
|
// Schnittstelle um Daten an andere Server zu senden
|
||||||
app_cfg.endpoint = {
|
app_cfg.endpoint = {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
host: 'https://192.168.1.25:8090/api',
|
host: 'https://192.168.1.25:8090/api',
|
||||||
secret: 'asdfwert1234567890#'
|
secret: 'asdfwert1234567890#'
|
||||||
};
|
};
|
||||||
|
|
||||||
// Einstellungen um Daten in Socket-Schnittstelle zu filtern (Datenschutzoption)
|
// Einstellungen um Schnittstellendaten von bestimmten Clients zu entfernen (Datenschutzoption)
|
||||||
app_cfg.filter = {
|
app_cfg.filter = {
|
||||||
// FIXME in api rausfiltern
|
// FIXME in api rausfiltern
|
||||||
send_missiontype: ['Brandeinsatz', 'Hilfeleistung'],
|
on_message_from: ['192.168.2.20', '192.168.2.30'],
|
||||||
send_missiondata: ['uuid', 'nummer', 'alarmzeit', 'art', 'stichwort', 'sondersignal', 'ort', 'ortsteil', 'wgs84_area'],
|
remove_einsatzdaten: ['besonderheiten'],
|
||||||
receive_missiontype: ['Brandeinsatz', 'Hilfeleistung'],
|
remove_ortsdaten: ['strasse', 'objekt', 'objektnr', 'wachfolge', 'wgs84_x', 'wgs84_y']
|
||||||
receive_missiondata: ['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