I'm looking for a robust way to deploy a Rack application (in this case a Sinatra app). Requests will take a little time (0.25-0.5 sec waiting on proxied HTTP requests) and there may be a decent amount of traffic.

Should I go with a traditional mongrel cluster setup? Use HAProxy as a load balancer? nginx? rackup?

What solutions have you used and what are the advantages?

link|improve this question

78% accept rate
Are you getting paid for sysadmin on this, or are you looking for a 'fire and forget' setup? – stef Jan 1 '11 at 8:05
sorry @stef, but your question in the comment keep me wandering. What change if I get paid as sysdamin or if I need a fire and forget set up? what will we be best option in both cases? Thanks – NicoGranelli Oct 28 '11 at 0:24
using Heroku is probably the easiest (git push heroku), but if you end up needing to have other applications, libraries and so on in your stack that's not an option so you would need to look at a self-hosted setup which adds a sysadmin responsibility. – stef Oct 28 '11 at 17:41
feedback

2 Answers

up vote 5 down vote accepted

Nginx / Unicorn FTW!

Nginx in front to serve static files and unicorn to handle Sinatra app.

Benefits: Performance, good load balancing with unix socks and deploy/upgrade without any downtimes (you can upgrade Ruby/Nginx/Sinatra/app without downtime).

How-to : http://sirupsen.com/setting-up-unicorn-with-nginx/ .

link|improve this answer
feedback

Nginx / passenger.

Nginx is very light, performant and has readable configuration files. Passenger is solid, easy to set up and works very well with rack - just have your config.ru in your app's main dir. Passenger can also take care of spawning processes and load balancing for you.

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.