HEX
Server: Apache
System: Linux 244.240.109.208.host.secureserver.net 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: icsla (1002)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //etc/nginx/ea-nginx/cpanel-php-location.tt
[% IF lsapi_handler %]
location ~ \.php[% php_major_version ? php_major_version _ "?" : "" %]$ {
    try_files $uri =404;
    include conf.d/includes-optional/cpanel-lsapi.conf;
    lsapi_handler [% lsapi_handler %];
    lsapi_engine on;
    lsapi_user [% user %];

    error_page 502 503 /LSAPI_50x.html;
}
[% ELSIF fpm_socket %]
location ~ \.php[% php_major_version ? php_major_version _ "?" : "" %]$ {
    try_files $uri =404;
    include conf.d/includes-optional/cpanel-fastcgi.conf;
    fastcgi_pass unix:[% fpm_socket %];

    error_page 502 503 /FPM_50x.html;
}
[% ELSE %]
location ~ \.php[0-9]?$ {
    try_files $uri =404;
    error_page 502 503 /FPM_50x.html;
    return 502;
}
[%- END %]