1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 14:11:59 +01:00

Update README.md

This commit is contained in:
Marek Farkaš
2024-01-27 11:51:20 +01:00
committed by GitHub
parent 8ce697a960
commit 59cb263918

View File

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