show/hide this revision's text 2 added 92 characters in body

I would advise you to look into Passenger. It's really easy to set up, lets Rails apps share memory, removes the burden of managing a cluster of mongrels and requires virtually no configuration. All you need are a special 'config.ru' file with a RackUp config and a DocumentRoot pointing to RAILS_ROOT/public set in Apache.

The problem with running multiple apps running in mongrel is that you need a seperate mongrel instance for each of them.

As for your SSL question, I have found it really easy to set up SSL for some parts of my sites in Nginx. I don't remember how to do it in Apache, but there are most likely some good howtos out there.

show/hide this revision's text 1

I would advise you to look into Passenger. It's really easy to set up, lets Rails apps share memory, removes the burden of managing a cluster of mongrels and requires virtually no configuration. All you need are a special 'config.ru' file with a RackUp config and a DocumentRoot pointing to RAILS_ROOT/public set in Apache.

The problem with running multiple apps running in mongrel is that you need a seperate mongrel instance for each of them.

As for your SSL question, I have found it really easy to set up SSL for some parts of my sites in Nginx. I don't remember how to do it in Apache, but there are most likely some good howtos out there.