Enable PHP-FPM connection status page on Cpanel

Sometime we need to monitor PHP-FPM status page on Cpanel. Default configuration on pm.status_path is Enable (/status). But when I tried to access curl http://domain.tld/status does not display anything

So, if we are able to enable php-fpm/status on httpd files:

vi /usr/local/apache/conf/httpd.conf
Find the The proxy_fcgi_module section of your domain.tld that already exists. I added <LocationMatch>. Below is configuration that I have added :

<LocationMatch "/(ping|status">
order deny,allow deny from all
allow from 10.1.0.88/24
SetHandler proxy:unix:/opt/cpanel/ea-php56/root/usr/var/run/php-fpm/704111e30605df7498d93fc41c85aebedf83b0ad.sock|fcgi://domain.tld
<LocationMatch >

Restart apache service then we can curl http://domain.tld/status
# curl http://domain.tld/status
pool: domain.tld
process manager: ondemand
start time: 10/Feb/2020:02:36:59 +0700
start since: 479
accepted conn: 14
listen queue: 0
max listen queue: 0
listen queue len: 0
idle processes: 0
active processes: 1
total processes: 1
max active processes: 1
max children reached: 0
slow requests: 0