Commit 442a0e3c authored by Leo Iannacone's avatar Leo Iannacone

set listening on config.host

parent ddeb914f
...@@ -59,6 +59,6 @@ io.sockets.on('disconnect', function(socket){ ...@@ -59,6 +59,6 @@ io.sockets.on('disconnect', function(socket){
}); });
var server = app.listen(config.port, function(){ var server = app.listen(config.port, config.host, null, function(){
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env); console.log("Debomatic-webui listening on %s:%d in %s mode", app.address().address, app.address().port, app.settings.env);
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment