@@ -40,7 +40,7 @@ export class ExpressService implements Initializable {
connectionHandler: (socket) => { this.connectionCount += 1 },
})
rpcServer.attach(httpServer)
- rpcServer.listen(PORT)
+ httpServer.listen(PORT, '0.0.0.0')
console.log("Server up on", PORT)
};