update So 24. Mai 21:01:01 CEST 2020

This commit is contained in:
Robert Richter 2020-05-24 21:01:01 +02:00
parent 6941d6ba0e
commit 9225567906

View File

@ -1,5 +1,6 @@
var app_cfg = {}; var app_cfg = {};
// Server-Einstellungen
app_cfg.global = { app_cfg.global = {
development: true, development: true,
http_port: 3000, http_port: 3000,
@ -10,6 +11,7 @@ app_cfg.global = {
mediapath: '/media/', mediapath: '/media/',
time_to_delete_waip: 60, time_to_delete_waip: 60,
default_time_for_standby: 10, default_time_for_standby: 10,
defaultuser: 'me', defaultuser: 'me',
defaultpass: '123', defaultpass: '123',
defaultuserip: '127.0.0.1', defaultuserip: '127.0.0.1',
@ -21,32 +23,35 @@ app_cfg.global = {
app_id: process.pid app_id: process.pid
}; };
// Einstellungen zur Erscheinung der Seite
app_cfg.public = { app_cfg.public = {
app_name: 'Wachalarm IP-Web', app_name: 'Wachalarm IP-Web',
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: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors', map_attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
// TODO: Link Impressium ext_imprint: false,
own_imprint: false,
url_imprint: 'https://www.nix.nix/impressium', url_imprint: 'https://www.nix.nix/impressium',
// TODO: Link Datenschutzerklärung, TLF-Sofort ext_privacy: false,
own_privacy: false,
url_privacy: 'https://www.nix.nix/datenschutz' url_privacy: 'https://www.nix.nix/datenschutz'
}; };
// Daten von anderen Servern empfangen
app_cfg.api = { app_cfg.api = {
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']
}; };
app_cfg.remote = { // Daten an andere Server senden
endpoint_host: 'localhost', app_cfg.endpoint = {
endpoint_port: '8090', enabled: true,
endpoint_route: '/api', host: '192.168.1.25',
port: '8090',
route: '/api',
secret: 'asdfwert1234567890#', secret: 'asdfwert1234567890#',
allow_mission_type: ['Brandeinsatz', 'Hilfeleistung'], send_mission_type: ['Brandeinsatz', 'Hilfeleistung'],
allow_data_type: ['uuid', 'nummer', 'alarmzeit', 'art', 'stichwort', 'sondersignal', 'ort', 'ortsteil', 'wgs84_area'] send_data_type: ['uuid', 'nummer', 'alarmzeit', 'art', 'stichwort', 'sondersignal', 'ort', 'ortsteil', 'wgs84_area']
}; };
module.exports = app_cfg; module.exports = app_cfg;