How to Enable and Use PHP‑FPM Status Page with Nginx

This guide shows how to configure Nginx and php‑fpm to expose a status page, explains the necessary settings, and provides a sample output to help you monitor PHP request handling and fine‑tune performance parameters.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
How to Enable and Use PHP‑FPM Status Page with Nginx

Enabling the php‑fpm status page helps analyze current PHP requests and decide whether php‑fpm parameters are set appropriately.

Nginx configuration

location /status {
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
    fastcgi_pass unix:/dev/shm/php-cgi.sock;
}

php‑fpm configuration

pm.status_path = /status

Sample status page output

pool:                 www
process manager:      static
start time:           20/Sep/2013:15:59:36 +0900
start since:          944
accepted conn:        300499
listen queue:         0
max listen queue:     0
listen queue len:     0
idle processes:       999
active processes:     1
total processes:      1000
max active processes: 438
max children reached: 0
slow requests:        0
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

backendserver monitoringphp-fpmstatus page
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.