1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-27 06:23:53 +01:00

Hotfix: 3las server listen op both ipv6 and ipv4

This commit is contained in:
Mark de Bruijn
2024-02-28 08:30:09 +01:00
parent e9b7c2a77f
commit 5d18839269

View File

@@ -234,7 +234,7 @@ class StreamServer {
}
Run() {
this.Server = new ws.Server({
"host": "127.0.0.1",
"host": ["127.0.0.1", "::1"],
"port": this.Port,
"clientTracking": true,
"perMessageDeflate": false