Glossary

PHP-FPM

PHP-FPM (FastCGI Process Manager) is a PHP process manager that maintains a pool of workers for handling PHP requests. Nginx or Apache forward requests to PHP-FPM via FastCGI; it executes the script and returns a response.

Pools and workers

PHP-FPM starts N child processes (workers). Each worker handles one request at a time. Three pool management modes:

Key parameters