Deploying Ruby on Rails with Apache and Mongrel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T04:08:57Z http://stackoverflow.com/feeds/question/538850 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/538850/deploying-ruby-on-rails-with-apache-and-mongrel 0 Deploying Ruby on Rails with Apache and Mongrel Dev 2009-02-11T21:19:13Z 2009-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>-------------- &lt;Proxy balancer://app1&gt; 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 &lt;/Proxy&gt; &lt;Proxy balancer://app2&gt; BalancerMember http://services.abc.edu:8004 BalancerMember http://services.abc.edu:8005 Order deny,allow Deny from all Allow from all &lt;/Proxy&gt; &lt;Proxy balancer://app3&gt; BalancerMember http://services.abc.edu:8006 BalancerMember http://services.abc.edu:8007 Order deny,allow Deny from all Allow from all &lt;/Proxy&gt; &lt;VirtualHost *:80&gt; ServerName services.abc.edu DocumentRoot /home/joe/projects/app1/public &lt;Directory "/home/joe/projects/app1/public"&gt; Options FollowSymLinks AllowOverride None Order allow,deny Allow from all &lt;/Directory&gt; &lt;Directory "/home/joe/projects/app2/public"&gt; Options FollowSymLinks AllowOverride None Order allow,deny Allow from all &lt;/Directory&gt; &lt;Directory "/home/joe/projects/app3/public"&gt; Options FollowSymLinks AllowOverride None Order allow,deny Allow from all &lt;/Directory&gt; 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] &lt;/VirtualHost&gt; ----------------------------------------- </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#538908 5 Answer by Aram Verstegen for Deploying Ruby on Rails with Apache and Mongrel Aram Verstegen 2009-02-11T21:31:59Z 2009-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#589686 0 Answer by bansalakhil for Deploying Ruby on Rails with Apache and Mongrel bansalakhil 2009-02-26T08:48:00Z 2009-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>