Reputation: 10224
Is it possible to deploy more than one rails app to one server? and I mean more than one different Rails applications, not the same app.
Upvotes: 1
Views: 69
Reputation: 211590
There are several ways to do this, including the popular Passenger system for Apache and nginx. Typically you can install as many applications as can be supported with the memory available, where you should budget about 100MB per active instance. More popular sites will require several active instances, where that means thousands of page loads per day.
Upvotes: 2