Browse Source

update the listen command to not specify the ip address

camalot 8 years ago
parent
commit
d8812496eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bin/www

+ 1 - 1
bin/www

@@ -36,7 +36,7 @@ var server = http.createServer(app);
  * Listen on provided port, on all network interfaces.
  */
 
-server.listen(port, '0.0.0.0');
+server.listen(port);
 server.on('error', onError);
 server.on('listening', onListening);