Skip to content

Commit

Permalink
filter clientId properly
Browse files Browse the repository at this point in the history
  • Loading branch information
michielbdejong committed Nov 22, 2011
1 parent a88db6d commit ad7adc8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion remoteCouch.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
if((thisChar >= 'a' && thisChar <= 'z') || (thisChar >= 'A' && thisChar <= 'Z')) {
clientId += thisChar;
} else {
clientId += thisChar;
clientId += '_';//thisChar;
}
}
console.log('Parsed redirect_uri to form clientId:'+clientId);
Expand Down
9 changes: 9 additions & 0 deletions restart.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
forever stopall
mv /root/.forever/*.log /root/.forever-old/
forever start vhostRouter.js #port 80
forever start statics.js #port 8001 - statics
forever start remoteCouch.js #port 8002 - facade
forever start CORS.js #port 8003 - proxy
forever start userAddress.js #port 8004 - userAddress
forever list
tail -f /root/.forever/*.log
5 changes: 0 additions & 5 deletions start.sh

This file was deleted.

0 comments on commit ad7adc8

Please sign in to comment.