chore: bind servers to 0.0.0.0 to allow external network access
This commit is contained in:
@@ -87,6 +87,6 @@ app.get('/live', renderPage('live', {
|
||||
realtimeWsUrl: process.env.REALTIME_WS_URL || 'ws://localhost:3002'
|
||||
}));
|
||||
|
||||
app.listen(PORT, () => {
|
||||
app.listen(PORT, '0.0.0.0', () => {
|
||||
console.log(`Started on port ${PORT}`);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user