unable to deploy nodejs socket io application on openshift
问题 I have a simple chat application based on nodejs and socket io. Works fine locally. But i am facing issues in deploying it to openshift. I have read and implemented almost all related threads on Stack Overflow. No progress yet. Client Side(index.html): <script src="/socket.io/socket.io.js"></script> var socket = io.connect("http://www.abcd.com:8000/"); where 'abcd' is an attached domain name to the openshift app. Server Side(index.js): //Express initializes app to be a funciton handler that