|
|
|
|
|
by wc-
4607 days ago
|
|
I didn't use demeteorizer for https://lawyermatch.me, but after making a meteor bundle you just get a node app anyway, so deploying to production didn't really hold any surprised in store for me. Related to production-meteor, I guess phusion passenger supports meteor now, does anyone have experience with the pluses or minuses of passenger over node/forever + nginx? LawyerMatch has been a way for me to test new tech to begin with, so I'm interested in giving passenger a try for a production app... |
|
Passenger does more than only providing process supervision. It automates the reverse proxying rules for you so that you don't even have to configure that.
It automatically launches Meteor on a right port so that you don't have to think about which port to choose, and whether it conflicts with something else.
It adds administration tools so that you can see what your app is doing; node-forever doesn't do this.
The list goes on. The point and goal of Passenger is to make production deployments significantly easier and less complex. We have future plans to support per-app daemon management too so that you can manage your background workers etc with minimal hassle, and plans to release full-stack images so that you don't even have to setup the machine.