What is the best web server for ruby on rails application? Why?
Asked
Active
Viewed 5.2k times
4 Answers
35
Both GitHub and 37 Signals use nginx + unicorn.

Sai Perchard
- 853
- 1
- 10
- 12
-
Yes I also use the same combination with linode VPS, very neat. – Rameshwar Vyevhare May 19 '14 at 11:18
32
Passenger running on Apache. Easy to set up, low memory usage, and well supported.

Luke
- 4,381
- 1
- 21
- 15
-
-
4lighttpd has myriad problems, I wouldn't recommend it under any circumstances. – womble Feb 24 '09 at 00:16
-
1The free version isn't as good as I had hoped. Both [Iodine](https://github.com/boazsegev/iodine) and [Puma](https://github.com/puma/puma) seem to offer better handling of concurrency and slow client handling. – Myst Sep 12 '16 at 03:24