HEX
Server: nginx/1.24.0
System: Linux prod-btpayments-io 6.14.0-1018-aws #18~24.04.1-Ubuntu SMP Mon Nov 24 19:46:27 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.3.19
Disabled: NONE
Upload Files
File: //etc/nginx/sites-enabled/php-fpm-status.conf
server {
    listen 8000;

    location ~ "^/php8.3-fpm-status$" {
        include fastcgi_params;
        fastcgi_pass unix:/run/php/php8.3-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        allow 127.0.0.1;
        deny all;
    }

    location ~ "^/php8.1-fpm-status$" {
        include fastcgi_params;
        fastcgi_pass unix:/run/php/php8.1-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        allow 127.0.0.1;
        deny all;
    }

    location ~ "^/php7.4-fpm-status$" {
        include fastcgi_params;
        fastcgi_pass unix:/run/php/php7.4-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        allow 127.0.0.1;
        deny all;
    }
}