HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: //usr/local/php7.4-fpm/etc/extras/sample-vhost.nginx
server {

    listen 11.22.33.44;
    server_name .domain.com;

    root /home/httpd/html/domain.com/public_html;
    location / {
        index index.php index.html index.htm;
    }
    location ~ \.php$ {
        if (!-f $request_filename) {
            return 404;
        }
        fastcgi_pass   unix:/var/run/php-fpm/www.sock;
        #fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info ^(.+\.php)(.*)$;
        include        fastcgi_params;
    }

}