up vote 3 down vote favorite
share [g+] share [fb]

I'm currently running mongrel clusters with monit watching over them for 8 Rails applications on one server.

I'd like to move 7 of these applications to mod_rails, with one remaining on mongrel. The 7 smaller applications are low-volume, while the one I'd like to remain on mongrel is a high volume, app.

As I understand it, this would be the best solution - as the setting PassengerPoolIdleTime only can be applied at a global level.

What configuration gotchas should I look out for with this type of setup?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I would probably just move all the apps to mod_rails, as the performance seems comparable to Mongrel and there's less administration overhead.

With regards to configuration gotchas, just make sure that you allow your public directory, or you'll find static assets failing:

<Directory "/var/www/app/current/public">
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

Aside from that, if you know how to configure Apache, mod_rails is very painless.

link|improve this answer
feedback

Ended up moving everything to mod_rails.

Works like a champ!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.