listen on all

This commit is contained in:
Anthony Metzidis 2017-01-26 16:35:12 -08:00
parent 7edb3082e4
commit f277c1dd33

View File

@ -198,6 +198,6 @@ app.use(connect_st({
index: 'index.html'
}));
http.createServer(app).listen(config.port, config.host);
http.createServer(app).listen(config.port, '0.0.0.0');
winston.info('listening on ' + config.host + ':' + config.port);