Live data from Hacker News

Poll: What web server do you use?

news.ycombinator.com

11–20 of 81 posts

Re: Poll: What web server do you use?

#13
I am currently using Apache and its the only web server I ever used, I have looked in to Lighttpd and Nginx but never actually used it. Can anyone tell me why I should use the other two over Apache? The main reason I am using Apache because it has a large user base, community and documentation that I can rely on if I ever need any help.

Re: Poll: What web server do you use?

#17
post #13

I am currently using Apache and its the only web server I ever used, I have looked in to Lighttpd and Nginx but never actually used it. Can anyone tell me why I should use the other two over Apache? The main reason I am using Apache because it has a large user base, community and documentation that I can rely on if I ever need any help.

Lighty/Nginx are, I found, "nicer" in general.

Easier to configure, can handle high loads with a lot less resources, more verbose configuration.

All 3 are a reasonable choice though.

Re: Poll: What web server do you use?

#18
post #13

I am currently using Apache and its the only web server I ever used, I have looked in to Lighttpd and Nginx but never actually used it. Can anyone tell me why I should use the other two over Apache? The main reason I am using Apache because it has a large user base, community and documentation that I can rely on if I ever need any help.

Can't vouch for lighty (though I suppose the same applies) but nginx is much, much faster than Apache. nginx was designed with speed in mind, Apache with reliability[1] and extensibility.

[1] Apache's internal API is designed to make it difficult to leak memory or other resources, overrun buffers, etc.

Re: Poll: What web server do you use?

#20
post #13

I am currently using Apache and its the only web server I ever used, I have looked in to Lighttpd and Nginx but never actually used it. Can anyone tell me why I should use the other two over Apache? The main reason I am using Apache because it has a large user base, community and documentation that I can rely on if I ever need any help.

The main reason I switched to Nginx is that it uses dramatically less memory than Apache. Running a semi-popular message board, I was eating through 4Gb of memory between Apache and MySQL on Ubuntu, and simply switching over to Nginx was faster and freed up over 1Gb of allocated memory immediately.

Since then, I've grown to dramatically prefer its configuration file syntax and usability.

Post reply on HN