allow access from 0.0.0.0

This commit is contained in:
Peter Millauer
2026-05-10 15:06:07 +02:00
parent 0622098ffb
commit 58b5a1053c
@@ -40,7 +40,7 @@ export class ExpressService implements Initializable {
connectionHandler: (socket) => { this.connectionCount += 1 }, connectionHandler: (socket) => { this.connectionCount += 1 },
}) })
rpcServer.attach(httpServer) rpcServer.attach(httpServer)
rpcServer.listen(PORT) httpServer.listen(PORT, '0.0.0.0')
console.log("Server up on", PORT) console.log("Server up on", PORT)
}; };