[nodejs] Re: How to host a node.js app on a server

2013-08-16 Thread pixel67
I'm trying to figure this out as well, I have a VPS that I set up for node hosting, I'm using NGINX. I found this article just now while searching about `configuring server to host node application` http://dailyjs.com/2010/03/15/hosting-nodejs-apps/ hope it helps On Sunday, September 12, 2010 10

[nodejs] Re: How to host a node.js app on a server

2013-08-19 Thread Clay Simmons
I'm surprised no one has mentioned haproxy yet. In my production setup, I use haproxy in front of Node and Apache. It also supports websocket connections. I'm running an app that has an admin console that runs on a typical LAMP stack (except the M in my scenario is Mong

Re: [nodejs] Re: How to host a node.js app on a server

2013-08-18 Thread Dylan Hassinger
This was challenging for me too, the way I learned to do it was: - install Node and get your app running at the ip:port address - use node-http-proxy to set route your subdomain to this port - launch both the app and http-proxy using forev