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 ```