Deploying Ruby on Rails with Apache and Mongrel - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T04:08:57Zhttp://stackoverflow.com/feeds/question/538850http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/538850/deploying-ruby-on-rails-with-apache-and-mongrel0Deploying Ruby on Rails with Apache and MongrelDev2009-02-11T21:19:13Z2009-02-26T08:53:02Z
<p>Hi Folks,
I'm fairly new to ruby on rails and web development. Here is my setup which I followed from this link <a href="http://tonyrose023.blogspot.com/2007/01/multiple-rails-apps-with-mongrel.html" rel="nofollow">http://tonyrose023.blogspot.com/2007/01/multiple-rails-apps-with-mongrel.html</a>
I run multiple rails applications on Apache2 with Mongrel clusters.</p>
<p><a href="http://services.abc.edu/app1" rel="nofollow">http://services.abc.edu/app1</a>
<a href="http://services.abc.edu/app2" rel="nofollow">http://services.abc.edu/app2</a>
<a href="http://services.abc.edu/app3" rel="nofollow">http://services.abc.edu/app3</a></p>
<p>This is what my 'virtual host' (/etc/apache2/sites-availabe/services.abc.edu) file looks like</p>
<pre><code>--------------
<Proxy balancer://app1>
BalancerMember http://services.abc.edu:8000
BalancerMember http://services.abc.edu:8001
BalancerMember http://services.abc.edu:8002
Order deny,allow
Deny from all
Allow from all
</Proxy>
<Proxy balancer://app2>
BalancerMember http://services.abc.edu:8004
BalancerMember http://services.abc.edu:8005
Order deny,allow
Deny from all
Allow from all
</Proxy>
<Proxy balancer://app3>
BalancerMember http://services.abc.edu:8006
BalancerMember http://services.abc.edu:8007
Order deny,allow
Deny from all
Allow from all
</Proxy>
<VirtualHost *:80>
ServerName services.abc.edu
DocumentRoot /home/joe/projects/app1/public
<Directory "/home/joe/projects/app1/public">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/home/joe/projects/app2/public">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/home/joe/projects/app3/public">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
RewriteEngine On
# Rewrite index to check for static
#RewriteRule ^/$ /index.html [QSA]
# Rewrite to check for Rails cached page
RewriteRule ^([^.]+)$ $1.html [QSA]
# Redirect all non-static requests to cluster
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
#RewriteRule ^/(.*)$ balancer://mongrel_cluster%{REQUEST_URI} [P,QSA,L]
RewriteRule ^/app1(.*)$ balancer://app1%{REQUEST_URI} [P,QSA,L]
RewriteRule ^/app2(.*)$ balancer://app2%{REQUEST_URI} [P,QSA,L]
RewriteRule ^/app3(.*)$ balancer://app3%{REQUEST_URI} [P,QSA,L]
</VirtualHost>
-----------------------------------------
</code></pre>
<p>My questions are</p>
<p>1) If anybody can comment on my setup and offer any suggestions would be great.</p>
<p>2) As you can see I have one DocumentRoot, although right now all the 3 apps work since they use same images but I think in the future I need to have DocumentRoot for each app </p>
<p>3) I need to get the apps running securely so I need to make this run with SSL (port 443) and I need some help with making it run with SSL. Any pointers would be helpful since I never installed a cert. I created the csr and the key and I have the cert with me. I'm researching on what are the next steps.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/538850/deploying-ruby-on-rails-with-apache-and-mongrel/538908#5389085Answer by Aram Verstegen for Deploying Ruby on Rails with Apache and MongrelAram Verstegen2009-02-11T21:31:59Z2009-02-11T21:37:59Z<p>I would advise you to look into <a href="http://www.modrails.com/" rel="nofollow">Passenger</a>. 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 <a href="http://www.modrails.com/documentation/Users%20guide.html#_rackup_specifications_for_various_web_frameworks" rel="nofollow">RackUp config</a> and a DocumentRoot pointing to RAILS_ROOT/public set in Apache.</p>
<p>The problem with running multiple apps in mongrel is that you need a seperate mongrel instance for each of them.</p>
<p>As for your SSL question, I have found it really easy to set up SSL for some parts of my sites in <a href="http://nginx.net/" rel="nofollow">Nginx</a>. I don't remember how to do it in Apache, but there are most likely some <a href="http://www.sitepoint.com/article/securing-apache-2-server-ssl/" rel="nofollow">good howtos out there</a>.</p>
http://stackoverflow.com/questions/538850/deploying-ruby-on-rails-with-apache-and-mongrel/589686#5896860Answer by bansalakhil for Deploying Ruby on Rails with Apache and Mongrelbansalakhil2009-02-26T08:48:00Z2009-02-26T08:48:00Z<p><a href="http://webonrails.com/2007/02/04/apache-proxy-balancer-mongrel-clusters-and-deploying-application-with-capistrano/" rel="nofollow">http://webonrails.com/2007/02/04/apache-proxy-balancer-mongrel-clusters-and-deploying-application-with-capistrano/</a></p>