Make it possible to bind streming service to 0.0.0.0 (#5744)

This commit is contained in:
Baptiste Gelez 2017-11-18 04:44:19 +01:00 committed by Eugen Rochko
parent 24cafd73a2
commit 2864e5e077
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ const startWorker = (workerId) => {
});
}, 30000);
server.listen(process.env.PORT || 4000, () => {
server.listen(process.env.PORT || 4000, process.env.BIND || '0.0.0.0', () => {
log.info(`Worker ${workerId} now listening on ${server.address().address}:${server.address().port}`);
});