Skip to content

Commit

Permalink
change nodester port to 8689 (trying to get it on nodester)
Browse files Browse the repository at this point in the history
	modified:   node/easyWebSocket-node.js
	modified:   node/server/Makefile
	modified:   node/server/server.js
  • Loading branch information
jeromeetienne committed Mar 19, 2011
1 parent 35dd53a commit 5e512d2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion node/easyWebSocket-node.js
Expand Up @@ -134,7 +134,7 @@ EasyWebSocket.CLOSED = 3;
* * EasyWebSocket.iframeOrigin = "http://localhost:8080";
* * EasyWebSocket.logFunction = console.log.bind(console);
*/
EasyWebSocket.serverUrl = "http://88.191.76.230:8667"; // TODO change this to be tunable and work on nodester
EasyWebSocket.serverUrl = "http://88.191.76.230:8689"; // TODO change this to be tunable and work on nodester
EasyWebSocket.logFunction = function(){}

//////////////////////////////////////////////////////////////////////////////////
Expand Down
1 change: 0 additions & 1 deletion node/server/Makefile
Expand Up @@ -11,7 +11,6 @@ app_create:

# need to get the proper git remote
# - get it in the app_info json output
# -
git_setup:
git remote rm nodester
git remote add nodester ec2-user@nodester.com:/home/ec2-user/hosted_apps/jetienne/535-eff3208a1e9009ba30bddc796915d488.git
Expand Down
2 changes: 1 addition & 1 deletion node/server/server.js
@@ -1,7 +1,7 @@
#!/usr/bin/env node

// MUST matches nodester one
var listenPort = 8667;
var listenPort = 8689;

// start http server
var httpSrv = require('http').createServer(function(request, response){
Expand Down

0 comments on commit 5e512d2

Please sign in to comment.