Browse Source

flop ports

windhamdavid 10 years ago
parent
commit
35a5df4159
2 changed files with 3 additions and 3 deletions
  1. 2 2
      README.md
  2. 1 1
      site/server.js

+ 2 - 2
README.md

@@ -24,11 +24,11 @@ node server.js
 
 In a version of Chrome that have webRTC support.
 
-go to [localhost:8080](http://localhost:8080)
+go to [localhost:8881](http://localhost:8881)
 
 click allow to see your camera
 
-go to [localhost:8080](http://localhost:8080)
+go to [localhost:8881](http://localhost:8881)
 
 click allow to see your camera and the connection will be made between your to open windows.
 

+ 1 - 1
site/server.js

@@ -2,7 +2,7 @@ var app = require('express')();
 var server = require('http').createServer(app);
 var webRTC = require('webrtc.io').listen(server);
 
-var port = process.env.PORT || 8080;
+var port = process.env.PORT || 8881;
 server.listen(port);