|
In order to keep my memory footprint to a minimum, I would like to know if it's possible to serve more than one application on WebFaction from a single Passenger instance. I just need to create an additional server entry, but I can't find a way to manually proxy it. It seems like it'd be a waste if I created more than one Passenger/Rails "application" if I already have nginx up and running with the first one. Is this possible? |
|
Using multiple Rails applications suggests "smart-lvl2" spawning method (see this), which takes much more memory than the "conservative" spawning we are using by default. In general, you should just stick with the one-app-per server scheme for Rails applications. |