diff --git a/src/server.js b/src/server.js index 8ae390126..eaaa8dc84 100644 --- a/src/server.js +++ b/src/server.js @@ -327,7 +327,7 @@ Server.prototype.start = function (callback) { mailer.initialize(); that.httpServer = http.createServer(that.app); - that.httpServer.listen(config.port, callback); + that.httpServer.listen(config.port, '127.0.0.1', callback); }); };