Managing multiple rails applications with apache

how can manage multiple rails applications with apache

i have followed the following tutorial and successfullt set up my
rails site using apache

http://www.howtoforge.com/ruby_on_rails_debian_etch

but how can i configure apache to host more than one rails site ?

I wrote a little about this here:

How to set up Apache for multiple hosts (assuming no SSL) is pretty
easy, and well-documented in many, many places. Search for “apache
virtual host configuration” or similar. How to do it with SSL is even
easier, but burns one real IP address per host.

–Michael

On Mon, Mar 2, 2009 at 1:26 AM, — Z@m —
[email protected] wrote:


(Ruby, Rails, Random) blog: http://skandragon.blogspot.com/

Mongrel is a nice piece of software, but you should really have a look
at
Phusion Passenger. It effectively makes deployment of Rails
applications
as simple as deploying PHP code.

http://www.modrails.com/documentation/Users%20guide.html#_installing_phusion_passenger
http://www.modrails.com/documentation/Users%20guide.html#_deploying_a_ruby_on_rails_application

Thank you for your fast reply !

regards
Krishnan

Phusion Passenger is the easiest (and increasingly better) way:

Cheers, Sazima

+1 for Passenger. I’m currently running some Rails apps and a Sinatra
app as well on the same box. Very easy, very simple, very cool.

It’s on my to-do list. Right between rebuilding my Xen server, making
Asterisk work again, etc. :slight_smile:

–Michael

The only issue I have with Passenger is the same one I have for any
apache-module based application: Break into one, and you break into
them all.

That is, they all run as user www group www (on my box, those can
vary.) Therefore if applications cross administrative boundaries,
they must run on different Apache instances. Otherwise, one can read
another application’s database.yml and the game is over.

That said, I’m the owner of my personal server, and therefore I am a
single boundry. I’ve started the conversion over to Passenger. One
down, 5 more to go. Looks trivial, and just works so far. The only
“site” I have it up on is my soon-to-be personal media database,
http://media.flame.org/ and no, it’s not even close to done yet.

–Michael

On Mon, Mar 2, 2009 at 10:39 AM, Bob M. [email protected]
wrote:


(Ruby, Rails, Random) blog: http://skandragon.blogspot.com/

Michael G. wrote:

The only issue I have with Passenger is the same one I have for any
apache-module based application: Break into one, and you break into
them all.

That is, they all run as user www group www (on my box, those can
vary.) Therefore if applications cross administrative boundaries,
they must run on different Apache instances. Otherwise, one can read
another application’s database.yml and the game is over.

Passenger solves that problem:
http://www.modrails.com/documentation/Users%20guide.html#user_switching

+1 for Passenger. I’m currently running some Rails apps and a Sinatra

On Mar 2, 4:26 am, “— Z@m —” [email protected] wrote:


Jack C.
[email protected]