- cross-posted to:
- opensource@lemmy.ml
- hackernews@lemmy.smeargle.fans
- herrcaptain ( @herrcaptain@lemmy.ca ) 6•9 months ago
I suspect that this might get interesting (in the way that one might want to grab popcorn for). I don’t know the current numbers but a sizable amount of web servers use nginx to at least some degree.
- Gamma ( @GammaGames@beehaw.org ) English4•9 months ago
According to w3, about 35%
- The Doctor ( @drwho@beehaw.org ) English3•9 months ago
For whatever it’s worth, Netcraft’s January 2024 survey says Nginx is around 23%, with Apache coming in second at just under 21%.
https://www.netcraft.com/blog/january-2024-web-server-survey/
- catacomb ( @catacomb@beehaw.org ) English2•9 months ago
I was going to say that Cloudflare uses nginx but I found that’s no longer true.
- taaz ( @taaz@biglemmowski.win ) English5•9 months ago
A bit of rant but I hope this can fix some of the discrepancies I have found between free Nginx and the Plus one:
If I want to configure (minimum amount of) proxy connections to keepalive then I have to use
upstream ... { ... }
directive, but by using that nginx changes how upstream proxy url is DNS resolved. Within docker this can actually cause problems when the nginx container starts sooner then the upstream service - afair to fix it one needs Nginx Plus because in free upstream DNS resolution “mode” can’t be configured.