1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

config cleanup

This commit is contained in:
NoobishSVK
2024-01-27 23:04:51 +01:00
parent fb31afb9a7
commit 8eb63eb5c4

View File

@@ -2,15 +2,15 @@ const webServerHost = '0.0.0.0'; // IP of the web server
const webServerPort = 8080; // web server port const webServerPort = 8080; // web server port
const webServerName = "Noobish's Server"; // web server name (will be displayed in title, bookmarks...) const webServerName = "Noobish's Server"; // web server name (will be displayed in title, bookmarks...)
const audioDeviceName = "Microphone (SADES Locust Plus)"; // Audio device name in your OS const audioDeviceName = "Microphone (High Definition Audio Device)"; // Audio device name in your OS
const audioPort = 8081; const audioPort = 8081;
const xdrdServerHost = '192.168.1.15'; // xdrd server IP (if it's running on the same machine, use 127.0.0.1) const xdrdServerHost = '127.0.0.1'; // xdrd server IP (if it's running on the same machine, use 127.0.0.1)
const xdrdServerPort = 7373; // xdrd server port const xdrdServerPort = 7373; // xdrd server port
const xdrdPassword = 'changememe'; // xdrd password (optional) const xdrdPassword = ''; // xdrd password (optional)
const qthLatitude = '50.357935'; // your latitude, useful for maps.fmdx.pl integration const qthLatitude = ''; // your latitude, useful for maps.fmdx.pl integration
const qthLongitude = '15.924395'; // your longitude, useful for maps.fmdx.pl integration const qthLongitude = ''; // your longitude, useful for maps.fmdx.pl integration
const verboseMode = false; // if true, console will display extra messages const verboseMode = false; // if true, console will display extra messages