Browse Source

sock.io 8080

windhamdavid 10 years ago
parent
commit
dc79c82aaa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app.js

+ 2 - 2
app.js

@@ -15,8 +15,8 @@ var server = http.createServer(function (req, res) {
 		fileServer.serve(req, res);
 	}).resume();
 
-}).listen(process.env.PORT || 8881, function() {
-    console.log('Listening at: http://localhost:' + (process.env.PORT || 8881));
+}).listen(process.env.PORT || 8080, function() {
+    console.log('Listening at: http://localhost:' + (process.env.PORT || 8080));
 });