Glossary

Nginx

Nginx is a web server and reverse proxy with an asynchronous, event-driven architecture. Unlike Apache (one process per connection), Nginx handles thousands of connections in a single thread — consuming far less memory under peak load.

Nginx roles

PHP + Nginx

Nginx cannot execute PHP itself. It forwards .php requests to PHP-FPM via the FastCGI protocol (fastcgi_pass). PHP-FPM processes the request and returns an HTML response.