This 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.
Nginx reaches 33.3% web server market share while Apache falls below 50%
51–60 of 190 posts
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#52Earlier quoted context omitted.
XML should NEVER be used for configuration, not even if you're a Java or C# framework/middleware/application server.
Honestly, I think the statement, 'XML should NEVER be used, period,' is true as well: for any use case I can imagine there are superior alternatives to XML. Even if you have to interface with other services using XML, just use SXML ( https://en.wikipedia.org/wiki/SXML ) in your own code and marshal to XML at the very last instant. Ultimately, XML was a colossal mistake carried out to perfection.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#53Earlier quoted context omitted.
People do that? And it's widespread? I've never heard of this.
This must be the single most common use of nginx, I'm totally blown away that someone as prolific as you has never heard of it.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#54Earlier quoted context omitted.
https://www.nginx.com/resources/admin-guide/reverse-proxy/
I know you can reverse proxy, but I haven't heard of anyone reverse proxying to apache.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#55Earlier quoted context omitted.
https://www.nginx.com/resources/admin-guide/reverse-proxy/
I know you can reverse proxy, but I haven't heard of anyone reverse proxying to apache.
https://blog.webfaction.com/2008/12/a-little-holiday-present...
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#56Earlier quoted context omitted.
I know you can reverse proxy, but I haven't heard of anyone reverse proxying to apache.
That was the original way (at least the most common way) to do CGI. Nginx as a reverse proxy / load balancer / SSL terminator / static file server pointing to a backend running apache for mod_cgi or mod_fastcgi. And a lot of people would have both web servers running on the same server. You already have a web server, why do you need two?! Just pick one!
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#57How 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…
I wonder if anyone else had a similar experience. If the first 20 minutes are nicer with one tool over the other, I suspect most people will stick with that tool until it starts limiting them.
I don't think any of the stuff you mention is related to that.
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#58Nginx 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%
#59Earlier quoted context omitted.
I've never seen SXML before, but that looks way worse. All of Lisp's frustration of trying to match closing parens with none of Lisp's power.
As opposed to closing tags? All decent text editors have matching parens highlighting. SXML is much easier to parse and it's more concise.
[1] http://sgmljs.net/docs/html5.html#tag-omission-on-document-l...
Re: Nginx reaches 33.3% web server market share while Apache falls below 50%
#60This 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.