diff --git a/scripts/web-server.js b/scripts/web-server.js index 3f74441e31..c027726325 100755 --- a/scripts/web-server.js +++ b/scripts/web-server.js @@ -40,7 +40,7 @@ function HttpServer(handlers) { HttpServer.prototype.start = function(port) { this.port = port; - this.server.listen(port); + this.server.listen(port, 'localhost'); util.puts('Http Server running at http://localhost:' + port + '/'); };