Phil
Phil

Reputation: 14671

Between nginx and lighttpd, which one suits best the needs of a web-app (SaaS) and why?

Between nginx and lighttpd, which one suits the needs of a web-app (SaaS) best and why?

I seek to find out:

Which one takes advantage of the hardware its running on, which one scales the best, which one shares the load better, which one is more secure in terms of DoS attacks, common abuse attacks et al.

Upvotes: 3

Views: 476

Answers (1)

Michael Dillon
Michael Dillon

Reputation: 32392

Mongrel2 is the answer.

But if you want to stick with older technology, then nginx is fundamentally an async server and there is an open API to build plugins if you need that.

But seriously, do look at Mongrel2 because message queueing (even zeroMQ) is a better way to handle scaling.

Upvotes: 2

Related Questions