Live data from Hacker News

Poll: What web server do you use?

news.ycombinator.com

21–30 of 81 posts

Re: Poll: What web server do you use?

#22
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.

I switched to nginx because it was leaner than apache, and the specific use case I had for it was load balancing (and eventually proxy caching) and static content. Apache is great because of the amount of options it has, it's the swiss army knife of web servers. However, if you really don't need your web server to do a lot, I've found that other systems are a more efficient choice, especially when you're trying to squeeze a lot out of small VPS machines.

Re: Poll: What web server do you use?

#25
I was using Nginx for static files and a reverse proxy (+balancer) to CherryPy until recently. Now switched to Nginx + uWSGI for everything and couldn't be happier. Nginx is very fast, even when on-the-fly Gzip is enabled.

Re: Poll: What web server do you use?

#27
post #25

I was using Nginx for static files and a reverse proxy (+balancer) to CherryPy until recently. Now switched to Nginx + uWSGI for everything and couldn't be happier. Nginx is very fast, even when on-the-fly Gzip is enabled.

I'm currently running Nginx+CherryPy and I'm if you'd like to comment on why you switched to uWSGI, what you gained and if you'd recommend it?
Post reply on HN