How much of nginx's growth is, do you think, due to it being "better" than Apache httpd (which it isn't, BTW. Apache 2.4 is easily as fast and scalable as nginx), compared to either (1) The aggressive sales and marketing of NGINX the company or (2) nginx fronting Apache httpd and thus "hiding" the growth of Apache httpd usage. But there are lots of Apache httpd haters, for some reason, and so they LOVE promoting the…
Nginx reaches 33.3% web server market share while Apache falls below 50%
61–70 of 190 posts
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#62Nginx is the web server equivalent of programming languages with fibers (in a good way.) Is there anything that competes/a "next Nginx"?
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#63Earlier quoted context omitted.
Why? Nginx is not a political statement or software nor does it benefit it's author's causes in any way. With that said, use caddy. Not for political reasons, just because it's awesome. https://caddyserver.com/
Caddy needs a decent networking library to compete with nginx, it cannot do that with crappy net package.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#64This is kind of a weird statistic to try to analyze. So many uses of nginx are just the act of putting an Apache/IIS/etc site behind nginx, so technically, both servers still have market share but you only see nginx. It's just that nginx makes it so easy to do certain things, like supporting modern HTTPS, that you might as well add it to your stack rather than replace something.
As someone younger who never really used Apache, I don't see any reason to do anything with it instead of Nginx. Other than supporting "legacy" setups, whats the point of Nginx load balancing Apache? Configuring nginx is just so much more intuitive.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#65This is kind of a weird statistic to try to analyze. So many uses of nginx are just the act of putting an Apache/IIS/etc site behind nginx, so technically, both servers still have market share but you only see nginx. It's just that nginx makes it so easy to do certain things, like supporting modern HTTPS, that you might as well add it to your stack rather than replace something.
As someone younger who never really used Apache, I don't see any reason to do anything with it instead of Nginx. Other than supporting "legacy" setups, whats the point of Nginx load balancing Apache? Configuring nginx is just so much more intuitive.
OTOH, Apache suffered from the "slow loris" attack, so the whole shebang ended up being nginx sitting in front of a few front-end apache instance kinds, which sit in front of a dozen or so backend apache instance kinds.
I find it interesting that although on those servers there are 12x more Apaches than NGINX, it might get counted as a server "using nginx"...
... and that's just because the whole she-bang sits under cloudflare, which reports Server: nginx-cloudflare ;)
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#66Nginx seems to have a different model. It does support a number of features but from what I can see it focuses on composing functionality with HTTP rather than adding more plugins.
Nginx seems to do a great job at being a load balancer and cdn-lite, and it seems like that's what the market wants out of a web server.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#67Apache has historically been a giant swiss army knife that will do just about everything you could want, from redirect databases to cgi to php interpreters to crazy auth setups. It did all that while still being a reasonably good workhorse for static file serving (when properly turned and using the right worker model, event rather than threaded or process). Nginx seems to have a different model. It does support a num…
Long story short, I decided not to use any of the partial WebDAV implementations for Nginx and just use sshfs instead. It's so true that Apache is a swiss army knife, though.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#68How much of nginx's growth is, do you think, due to it being "better" than Apache httpd (which it isn't, BTW. Apache 2.4 is easily as fast and scalable as nginx), compared to either (1) The aggressive sales and marketing of NGINX the company or (2) nginx fronting Apache httpd and thus "hiding" the growth of Apache httpd usage. But there are lots of Apache httpd haters, for some reason, and so they LOVE promoting the…
It's not all about performance and scalability. Nginx is better, imo, because it has a better design and configuration.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#69Earlier quoted context omitted.
Also has builtin letsencrypt automation and generally easier configuration, so for small sites it might be a better option than nginx.
I think their docs says that unless you expect to scale to multiple x 10 000 requests / second then it caddy might be worth trying. I went with it for the test networks at my job and liked it a lot.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#70Apache has historically been a giant swiss army knife that will do just about everything you could want, from redirect databases to cgi to php interpreters to crazy auth setups. It did all that while still being a reasonably good workhorse for static file serving (when properly turned and using the right worker model, event rather than threaded or process). Nginx seems to have a different model. It does support a num…