What is the best web server for Ruby on Rails application?

Ruby on-RailsWebserver

Ruby on-Rails Problem Overview


What is the best web server for ruby on rails application? Why?

Ruby on-Rails Solutions


Solution 1 - Ruby on-Rails

Both GitHub and 37 Signals use nginx + unicorn.

https://github.com/blog/517-unicorn

Solution 2 - Ruby on-Rails

Passenger running on Apache. Easy to set up, low memory usage, and well supported.

Solution 3 - Ruby on-Rails

Passenger is becoming the norm. It has more configuration options and is faster.

Solution 4 - Ruby on-Rails

Additionally, for something very quick/easy on dev, try http://pow.cx/

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionecleelView Question on Stackoverflow
Solution 1 - Ruby on-RailsSai PerchardView Answer on Stackoverflow
Solution 2 - Ruby on-RailsLukeView Answer on Stackoverflow
Solution 3 - Ruby on-RailsryeguyView Answer on Stackoverflow
Solution 4 - Ruby on-RailsSai PerchardView Answer on Stackoverflow