I'll run Apache till the end.
Nginx is now the most popular web server, overtaking Apache
21–30 of 33 posts
Re: Nginx is now the most popular web server, overtaking Apache
#22Earlier quoted context omitted.
You can proxy requests from nginx to backend application servers, but you cannot host those applications on the nginx. Whereas with Apache2, PHP/Python/etc. interpreters can run directly in the Apache worker processes. Similarly, you can also run Nodejs/Ruby/Python web application as part of Apache with Passenger module.
Is it really an interesting distinction whether PHP is handled via dlopen of mod_php.so or via UNIX sockets to php-fpm?
Re: Nginx is now the most popular web server, overtaking Apache
#23Considering nginx is really just good at serving static content(maybe CDN uses it a lot) and the rest are all proxying, and Apache can handle static and dynamic contents at the same time, this tells me many web server nowadays are no longer simple http+cgi, but with app servers(e.g. django, rails,etc) running behind a (nginx) proxy so nginx's number takes over apaches.
I wouldn't read too much into that. nginx is good at serving dynamic content too. Simple setup with uwsgi for Python and php-fpm for PHP.
Re: Nginx is now the most popular web server, overtaking Apache
#24I'll run Apache till the end.
I’m pretty deep into Apache, but I think I’ll use this as an excuse to play around with nginx for a bit. Worst case scenario I’ll learn something new.
For me, the main draw to nginx was powerful (web) proxying, static file performance and simpler configs - Caddy does all of that 10x. In a sense, nginx is right in between Apache and Caddy, so unless I need to proxy something obscure like RTMP or email, I rarely have a use for it these days.
Re: Nginx is now the most popular web server, overtaking Apache
#25Earlier quoted context omitted.
I’m pretty deep into Apache, but I think I’ll use this as an excuse to play around with nginx for a bit. Worst case scenario I’ll learn something new.
My advice as a fellow long-time Apache user who also went deep into nginx would be to look into Caddy. For me, the main draw to nginx was powerful (web) proxying, static file performance and simpler configs - Caddy does all of that 10x. In a sense, nginx is right in between Apache and Caddy, so unless I need to proxy something obscure like RTMP or email, I rarely have a use for it these days.
HTTP is not new technology, nor rocket science, a web server to serve a simple HTML page should be configurable from scratch, from an empty .conf file, in seconds.
Caddy seems to share the same philosophy.
Re: Nginx is now the most popular web server, overtaking Apache
#26Earlier quoted context omitted.
Is it really an interesting distinction whether PHP is handled via dlopen of mod_php.so or via UNIX sockets to php-fpm?
Yes - it matters a lot who is in control of the code execution. The traditional way was to run the code from or as a child process of the webserver process. FPM, WSGI, etc. move that into a completely separate and unrelated process. Crashes, hangs and security issues are a much smaller problem in the latter case.
Re: Nginx is now the most popular web server, overtaking Apache
#27Earlier quoted context omitted.
Yes - it matters a lot who is in control of the code execution. The traditional way was to run the code from or as a child process of the webserver process. FPM, WSGI, etc. move that into a completely separate and unrelated process. Crashes, hangs and security issues are a much smaller problem in the latter case.
So because FPM isn't running in-process, nginx "nginx is really just good at serving static content"...? That makes literally no sense to me.
The English is a bit broken in the top-level comment, but both static content and proxying are clearly mentioned as "nginx things", which is entirely fair. If you don't consider proxying to be included under the term "serving" (which is entirely reasonable and not uncommon) this is entirely true - the only kind of "serving" nginx is good at is static files, the rest of what it's good at isn't "serving" but proxying to other servers that render dynamic content - PHP-FPM is one such server (it just happens to not speak standard HTTP).
I don't see why people always get mad when this gets brought up - I've always considered that to be a good architectural choice for nginx. Running application code in the webserver process isn't a good idea anymore so the focus on good static and proxy performance is actually what I think made it ultimately "win" over Apache - the industry has moved on from the old ways and Apache fell behind.
Re: Nginx is now the most popular web server, overtaking Apache
#28Earlier quoted context omitted.
So because FPM isn't running in-process, nginx "nginx is really just good at serving static content"...? That makes literally no sense to me.
> Considering nginx is really just good at serving static content(maybe CDN uses it a lot) and the rest are all proxying The English is a bit broken in the top-level comment, but both static content and proxying are clearly mentioned as "nginx things", which is entirely fair. If you don't consider proxying to be included under the term "serving" (which is entirely reasonable and not uncommon) this is entirely true -…
Additionally, if you are behind CDN or just plain Varnish, static assets would only be hit once or twice, and majority of the requests would be processed by PHP anyways, so there is no benefit in putting additional pipe between proxy (Nginx) and PHP interpreter (FPM). Especially with smaller page responses, Apache can easily win, since it doesn't have to communicate with an external process.
Re: Nginx is now the most popular web server, overtaking Apache
#29Earlier quoted context omitted.
> Considering nginx is really just good at serving static content(maybe CDN uses it a lot) and the rest are all proxying The English is a bit broken in the top-level comment, but both static content and proxying are clearly mentioned as "nginx things", which is entirely fair. If you don't consider proxying to be included under the term "serving" (which is entirely reasonable and not uncommon) this is entirely true -…
I think that Apache2 + mod_php (or modules for other runtimes) doesn't measurably impact most web applications, and this setup is a bit simpler, since you only need to run and configure Apache, instead of Nginx + PHP-FPM. If you are working with containers, it means that you only need one container, instead of two (if you go with the idea that container should only do one thing.) Additionally, if you are behind CDN o…
Re: Nginx is now the most popular web server, overtaking Apache
#30Earlier quoted context omitted.
my httpd.conf is always shorter than nginx configs. it's another case of linux distros messing up good software.
shorter didn't mean clear that's the age old LoC fallacy