Koteswara rao Vuyyuru
2010-Dec-11 10:38 UTC
How to Run Two Ruby on Rails application at a time
Hi All How to create Virtual hosts in Apache web server using Ruby on rails. Thanks koti. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Frederick Cheung
2010-Dec-11 12:06 UTC
Re: How to Run Two Ruby on Rails application at a time
On Dec 11, 10:38 am, Koteswara rao Vuyyuru <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hi All > > How to create Virtual hosts in Apache web server using Ruby on rails. >Assuming you''re using passenger, then at a strict minimum all you need is <VirtualHost *:80> ServerName www.app1.com DocumentRoot /webapps/app1/public <Directory /webapps/app1/public> Allow from all Options -MultiViews </Directory> </VirtualHost> <VirtualHost *:80> ServerName www.app2.com DocumentRoot /webapps/app2/public <Directory /webapps/app2/public> Allow from all Options -MultiViews </Directory> </VirtualHost>> Thanks > koti. > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.