From 59cb263918c4b334d9174c181f8dd88b6306fea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Farka=C5=A1?= Date: Sat, 27 Jan 2024 11:51:20 +0100 Subject: [PATCH] Update README.md --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 60277b3..3e60c02 100644 --- a/README.md +++ b/README.md @@ -33,11 +33,21 @@ Version >=21.6.0 is currently not working correctly. 3. Update your config in userconfig.js: ```js - const webServerHost = '192.168.1.39'; // IP of the web server + const webServerHost = '0.0.0.0'; // IP of the web server const webServerPort = 8080; // web server port - - const xdrdServerHost = '192.168.1.15'; // xdrd server iP + const webServerName = "Noobish's Server"; // web server name (will be displayed in title, bookmarks...) + + const audioDeviceName = "Microphone (High Definition Audio Device)"; // Audio device name in your OS + const audioPort = 8081; // Port for the audio stream + + 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 xdrdPassword = 'password'; // xdrd password (optional) + + const qthLatitude = '50.123456'; // your latitude, useful for maps.fmdx.pl integration + const qthLongitude = '15.123456'; // your longitude, useful for maps.fmdx.pl integration + + const verboseMode = false; // if true, console will display extra messages ```