Web Server Information

Server Software: nginx/1.18.0
Server Name: desktopwaterfall.com
Server Address: 180.149.37.80
Server Protocol: HTTP/1.1
Document Root: /var/www/www-root/data/www/desktopwaterfall.com
PHP Version: 8.2.20
Loaded Extensions: Core, date, libxml, openssl, pcre, sqlite3, zlib, bz2, calendar, ctype, hash, fileinfo, filter, ftp, gettext, gmp, json, iconv, SPL, pcntl, session, standard, Phar, random, readline, Reflection, mbstring, shmop, SimpleXML, sockets, tokenizer, xml, cgi-fcgi, mysqlnd, PDO, curl, dom, gd, intl, exif, mysqli, pdo_mysql, soap, xmlreader, xmlrpc, xmlwriter, zip, Zend OPcache

Main Nginx Configuration:

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
	worker_connections 768;
	# multi_accept on;
}

http {

	##
	# Basic Settings
	##

	sendfile on;
	tcp_nopush on;
	types_hash_max_size 2048;
	# server_tokens off;

	# server_names_hash_bucket_size 64;
	# server_name_in_redirect off;

	include /etc/nginx/mime.types;
	default_type application/octet-stream;

	##
	# SSL Settings
	##

	ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
	ssl_prefer_server_ciphers on;

	##
	# Logging Settings
	##

	access_log /var/log/nginx/access.log;
	error_log /var/log/nginx/error.log;

	##
	# Gzip Settings
	##

	# gzip on;

	# gzip_vary on;
	# gzip_proxied any;
	# gzip_comp_level 6;
	# gzip_buffers 16 8k;
	# gzip_http_version 1.1;
	# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

	##
	# Virtual Host Configs
	##

	include /etc/nginx/conf.d/*.conf;
	include /etc/nginx/sites-enabled/*;
	include /etc/nginx/vhosts/*/*.conf;
	client_max_body_size 128m;
	server {
		server_name localhost;
	disable_symlinks if_not_owner;
	listen 80;
	listen [::]:80;
	include /etc/nginx/vhosts-includes/*.conf;
	location @fallback {
		error_log /dev/null crit;
		proxy_pass http://127.0.0.1:8080;
		proxy_redirect http://127.0.0.1:8080 /;
		proxy_set_header Host $host;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_set_header X-Forwarded-Proto $scheme;
		access_log off ;
	}
	}
}


#mail {
#	# See sample authentication script at:
#	# http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
#	# auth_http localhost/auth.php;
#	# pop3_capabilities "TOP" "USER";
#	# imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#	server {
#		listen     localhost:110;
#		protocol   pop3;
#		proxy      on;
#	}
#
#	server {
#		listen     localhost:143;
#		protocol   imap;
#		proxy      on;
#	}
#}

Included Configuration Files:

Configuration: /etc/nginx/conf.d/isplimitreq.conf

Configuration: /etc/nginx/conf.d/ssl_servers_inc.conf

No configuration files found for pattern: /etc/nginx/sites-enabled/*

Configuration: /etc/nginx/vhosts/www-root/beautychoicetips.com.conf

geo $geo {
default 0;
}
server {
	server_name beautychoicetips.com www.beautychoicetips.com;
	charset off;
	index index.php index.html;
	disable_symlinks if_not_owner from=$root_path;
	include /etc/nginx/vhosts-includes/*.conf;
	include /etc/nginx/vhosts-resources/beautychoicetips.com/*.conf;
	access_log /var/www/httpd-logs/beautychoicetips.com.access.log;
	error_log /var/www/httpd-logs/beautychoicetips.com.error.log notice;
	ssi on;
	set $root_path /var/www/www-root/data/www/beautychoicetips.com;
	root $root_path;
	gzip on;
	gzip_comp_level 5;
	gzip_disable "msie6";
	gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
	        
        
         
location ~* \.(ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|webp|txt|xml|pdf|webm|webm)$ {
        expires max;
        access_log  off;
        log_not_found  off;
    }
    
    
    location / {
        if ($request_uri ~* \.php$) {
            return 404;
        }
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/beautychoicetips.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }
    if ($uri !~ "(\.html|\.php|ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|txt|xml|pdf|webp|webm|\/)$") {
        return 301 "$uri/";
    }
    
    location ~* \/(.*)/$ {
        location ~ ^/rus/$ {
            rewrite /(.*)/$ /rus/index.php last;
        }
        location ~ ^/cz/$ {
            rewrite /(.*)/$ /cz/index.php last;
        }
        location ~ ^/de/$ {
            rewrite /(.*)/$ /de/index.php last;
        }
        location ~ ^/es/$ {
            rewrite /(.*)/$ /es/index.php last;
        }
        location ~ ^/it/$ {
            rewrite /(.*)/$ /it/index.php last;
        }
        location ~ ^/sk/$ {
            rewrite /(.*)/$ /sk/index.php last;
        }
        location ~ ^/th/$ {
            rewrite /(.*)/$ /th/index.php last;
        }
        location ~ ^/ve/$ {
            rewrite /(.*)/$ /ve/index.php last;
        }
        location ~ ^/vn/$ {
            rewrite /(.*)/$ /vn/index.php last;
        }
        location ~ ^/bg/$ {
            rewrite /(.*)/$ /bg/index.php last;
        }
        location ~ ^/sp/$ {
            rewrite /(.*)/$ /sp/index.php last;
        }
        location ~ ^/dt/$ {
            rewrite /(.*)/$ /dt/index.php last;
        }
        location ~ ^/hu/$ {
            rewrite /(.*)/$ /hu/index.php last;
        }
        location ~ ^/fr/$ {
            rewrite /(.*)/$ /fr/index.php last;
        }
        location ~ ^/fe/$ {
            rewrite /(.*)/$ /fe/index.php last;
        }
        location ~ ^/in/$ {
            rewrite /(.*)/$ /in/index.php last;
        }
        location ~ ^/ms/$ {
            rewrite /(.*)/$ /ms/index.php last;
        }
        location ~ ^/en/$ {
            rewrite /(.*)/$ /en/index.php last;
        }
        location ~ ^/sv/$ {
            rewrite /(.*)/$ /sv/index.php last;
        }
        location ~ ^/el/$ {
            rewrite /(.*)/$ /el/index.php last;
        }
        location ~ ^/ru/$ {
            rewrite /(.*)/$ /ru/index.php last;
        }
        rewrite /(.*)/$ /$1.php last;
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/beautychoicetips.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }

  location ~ /goo.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /gooconf.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /smb.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
    fastcgi_pass unix:/var/www/php-fpm/6.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  
  location ~ /sub.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @sub {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
    fastcgi_pass unix:/var/www/php-fpm/6.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
         
	listen 180.149.37.82:80;
}
server {
	server_name beautychoicetips.com www.beautychoicetips.com;
	ssl_certificate "/var/www/httpd-cert/www-root/beautychoicetips.com_le2.crtca";
	ssl_certificate_key "/var/www/httpd-cert/www-root/beautychoicetips.com_le2.key";
	ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
	ssl_prefer_server_ciphers on;
	ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
	ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
	charset off;
	index index.php index.html;
	disable_symlinks if_not_owner from=$root_path;
	include /etc/nginx/vhosts-includes/*.conf;
	include /etc/nginx/vhosts-resources/beautychoicetips.com/*.conf;
	access_log /var/www/httpd-logs/beautychoicetips.com.access.log;
	error_log /var/www/httpd-logs/beautychoicetips.com.error.log notice;
	ssi on;
	set $root_path /var/www/www-root/data/www/beautychoicetips.com;
	root $root_path;
	gzip on;
	gzip_comp_level 5;
	gzip_disable "msie6";
	gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
        
        
          
location ~* \.(ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|webp|txt|xml|pdf|webm|webm)$ {
        expires max;
        access_log  off;
        log_not_found  off;
    }
    
    
    location / {
        if ($request_uri ~* \.php$) {
            return 404;
        }
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/beautychoicetips.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }
    if ($uri !~ "(\.html|\.php|ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|txt|xml|pdf|webp|webm|\/)$") {
        return 301 "$uri/";
    }
    
    location ~* \/(.*)/$ {
        location ~ ^/rus/$ {
            rewrite /(.*)/$ /rus/index.php last;
        }
        location ~ ^/cz/$ {
            rewrite /(.*)/$ /cz/index.php last;
        }
        location ~ ^/de/$ {
            rewrite /(.*)/$ /de/index.php last;
        }
        location ~ ^/es/$ {
            rewrite /(.*)/$ /es/index.php last;
        }
        location ~ ^/it/$ {
            rewrite /(.*)/$ /it/index.php last;
        }
        location ~ ^/sk/$ {
            rewrite /(.*)/$ /sk/index.php last;
        }
        location ~ ^/th/$ {
            rewrite /(.*)/$ /th/index.php last;
        }
        location ~ ^/ve/$ {
            rewrite /(.*)/$ /ve/index.php last;
        }
        location ~ ^/vn/$ {
            rewrite /(.*)/$ /vn/index.php last;
        }
        location ~ ^/bg/$ {
            rewrite /(.*)/$ /bg/index.php last;
        }
        location ~ ^/sp/$ {
            rewrite /(.*)/$ /sp/index.php last;
        }
        location ~ ^/dt/$ {
            rewrite /(.*)/$ /dt/index.php last;
        }
        location ~ ^/hu/$ {
            rewrite /(.*)/$ /hu/index.php last;
        }
        location ~ ^/fr/$ {
            rewrite /(.*)/$ /fr/index.php last;
        }
        location ~ ^/fe/$ {
            rewrite /(.*)/$ /fe/index.php last;
        }
        location ~ ^/in/$ {
            rewrite /(.*)/$ /in/index.php last;
        }
        location ~ ^/ms/$ {
            rewrite /(.*)/$ /ms/index.php last;
        }
        location ~ ^/en/$ {
            rewrite /(.*)/$ /en/index.php last;
        }
        location ~ ^/sv/$ {
            rewrite /(.*)/$ /sv/index.php last;
        }
        location ~ ^/el/$ {
            rewrite /(.*)/$ /el/index.php last;
        }
        location ~ ^/ru/$ {
            rewrite /(.*)/$ /ru/index.php last;
        }
        rewrite /(.*)/$ /$1.php last;
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/beautychoicetips.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }

  location ~ /goo.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /gooconf.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /smb.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
    fastcgi_pass unix:/var/www/php-fpm/6.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  
  location ~ /sub.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
        fastcgi_pass unix:/var/www/php-fpm/6.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @sub {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@beautychoicetips.com";
    fastcgi_pass unix:/var/www/php-fpm/6.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
       
	listen 180.149.37.82:443 ssl;
}

Configuration: /etc/nginx/vhosts/www-root/coalgrillshop.com.conf

geo $geo {
default 0;
}
server {
	server_name coalgrillshop.com www.coalgrillshop.com;
	charset off;
	index index.php index.html;
	disable_symlinks if_not_owner from=$root_path;
	include /etc/nginx/vhosts-includes/*.conf;
	include /etc/nginx/vhosts-resources/coalgrillshop.com/*.conf;
	access_log /var/www/httpd-logs/coalgrillshop.com.access.log;
	error_log /var/www/httpd-logs/coalgrillshop.com.error.log notice;
	ssi on;
	set $root_path /var/www/www-root/data/www/coalgrillshop.com;
	root $root_path;
	gzip on;
	gzip_comp_level 5;
	gzip_disable "msie6";
	gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
	        
        
          
location ~* \.(ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|webp|txt|xml|pdf|webm|webm)$ {
        expires max;
        access_log  off;
        log_not_found  off;
    }
    
    
    location / {
        if ($request_uri ~* \.php$) {
            return 404;
        }
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/coalgrillshop.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }
    if ($uri !~ "(\.html|\.php|ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|txt|xml|pdf|webp|webm|\/)$") {
        return 301 "$uri/";
    }
    
    location ~* \/(.*)/$ {
        location ~ ^/rus/$ {
            rewrite /(.*)/$ /rus/index.php last;
        }
        location ~ ^/cz/$ {
            rewrite /(.*)/$ /cz/index.php last;
        }
        location ~ ^/de/$ {
            rewrite /(.*)/$ /de/index.php last;
        }
        location ~ ^/es/$ {
            rewrite /(.*)/$ /es/index.php last;
        }
        location ~ ^/it/$ {
            rewrite /(.*)/$ /it/index.php last;
        }
        location ~ ^/sk/$ {
            rewrite /(.*)/$ /sk/index.php last;
        }
        location ~ ^/th/$ {
            rewrite /(.*)/$ /th/index.php last;
        }
        location ~ ^/ve/$ {
            rewrite /(.*)/$ /ve/index.php last;
        }
        location ~ ^/vn/$ {
            rewrite /(.*)/$ /vn/index.php last;
        }
        location ~ ^/bg/$ {
            rewrite /(.*)/$ /bg/index.php last;
        }
        location ~ ^/sp/$ {
            rewrite /(.*)/$ /sp/index.php last;
        }
        location ~ ^/dt/$ {
            rewrite /(.*)/$ /dt/index.php last;
        }
        location ~ ^/hu/$ {
            rewrite /(.*)/$ /hu/index.php last;
        }
        location ~ ^/fr/$ {
            rewrite /(.*)/$ /fr/index.php last;
        }
        location ~ ^/fe/$ {
            rewrite /(.*)/$ /fe/index.php last;
        }
        location ~ ^/in/$ {
            rewrite /(.*)/$ /in/index.php last;
        }
        location ~ ^/ms/$ {
            rewrite /(.*)/$ /ms/index.php last;
        }
        location ~ ^/en/$ {
            rewrite /(.*)/$ /en/index.php last;
        }
        location ~ ^/sv/$ {
            rewrite /(.*)/$ /sv/index.php last;
        }
        location ~ ^/el/$ {
            rewrite /(.*)/$ /el/index.php last;
        }
        location ~ ^/ru/$ {
            rewrite /(.*)/$ /ru/index.php last;
        }
        rewrite /(.*)/$ /$1.php last;
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/coalgrillshop.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }

  location ~ /goo.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /gooconf.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /smb.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
    fastcgi_pass unix:/var/www/php-fpm/2.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  
  location ~ /sub.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @sub {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
    fastcgi_pass unix:/var/www/php-fpm/2.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
       
	listen 180.149.37.78:80;
}
server {
	server_name coalgrillshop.com www.coalgrillshop.com;
	ssl_certificate "/var/www/httpd-cert/www-root/coalgrillshop.com_le2.crtca";
	ssl_certificate_key "/var/www/httpd-cert/www-root/coalgrillshop.com_le2.key";
	ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
	ssl_prefer_server_ciphers on;
	ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
	ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
	charset off;
	index index.php index.html;
	disable_symlinks if_not_owner from=$root_path;
	include /etc/nginx/vhosts-includes/*.conf;
	include /etc/nginx/vhosts-resources/coalgrillshop.com/*.conf;
	access_log /var/www/httpd-logs/coalgrillshop.com.access.log;
	error_log /var/www/httpd-logs/coalgrillshop.com.error.log notice;
	ssi on;
	set $root_path /var/www/www-root/data/www/coalgrillshop.com;
	root $root_path;
	gzip on;
	gzip_comp_level 5;
	gzip_disable "msie6";
	gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
        
        
          
location ~* \.(ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|webp|txt|xml|pdf|webm|webm)$ {
        expires max;
        access_log  off;
        log_not_found  off;
    }
    
    
    location / {
        if ($request_uri ~* \.php$) {
            return 404;
        }
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/coalgrillshop.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }
    if ($uri !~ "(\.html|\.php|ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|txt|xml|pdf|webp|webm|\/)$") {
        return 301 "$uri/";
    }
    
    location ~* \/(.*)/$ {
        location ~ ^/rus/$ {
            rewrite /(.*)/$ /rus/index.php last;
        }
        location ~ ^/cz/$ {
            rewrite /(.*)/$ /cz/index.php last;
        }
        location ~ ^/de/$ {
            rewrite /(.*)/$ /de/index.php last;
        }
        location ~ ^/es/$ {
            rewrite /(.*)/$ /es/index.php last;
        }
        location ~ ^/it/$ {
            rewrite /(.*)/$ /it/index.php last;
        }
        location ~ ^/sk/$ {
            rewrite /(.*)/$ /sk/index.php last;
        }
        location ~ ^/th/$ {
            rewrite /(.*)/$ /th/index.php last;
        }
        location ~ ^/ve/$ {
            rewrite /(.*)/$ /ve/index.php last;
        }
        location ~ ^/vn/$ {
            rewrite /(.*)/$ /vn/index.php last;
        }
        location ~ ^/bg/$ {
            rewrite /(.*)/$ /bg/index.php last;
        }
        location ~ ^/sp/$ {
            rewrite /(.*)/$ /sp/index.php last;
        }
        location ~ ^/dt/$ {
            rewrite /(.*)/$ /dt/index.php last;
        }
        location ~ ^/hu/$ {
            rewrite /(.*)/$ /hu/index.php last;
        }
        location ~ ^/fr/$ {
            rewrite /(.*)/$ /fr/index.php last;
        }
        location ~ ^/fe/$ {
            rewrite /(.*)/$ /fe/index.php last;
        }
        location ~ ^/in/$ {
            rewrite /(.*)/$ /in/index.php last;
        }
        location ~ ^/ms/$ {
            rewrite /(.*)/$ /ms/index.php last;
        }
        location ~ ^/en/$ {
            rewrite /(.*)/$ /en/index.php last;
        }
        location ~ ^/sv/$ {
            rewrite /(.*)/$ /sv/index.php last;
        }
        location ~ ^/el/$ {
            rewrite /(.*)/$ /el/index.php last;
        }
        location ~ ^/ru/$ {
            rewrite /(.*)/$ /ru/index.php last;
        }
        rewrite /(.*)/$ /$1.php last;
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/coalgrillshop.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }

  location ~ /goo.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /gooconf.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /smb.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
    fastcgi_pass unix:/var/www/php-fpm/2.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  
  location ~ /sub.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
        fastcgi_pass unix:/var/www/php-fpm/2.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @sub {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@coalgrillshop.com";
    fastcgi_pass unix:/var/www/php-fpm/2.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
       
	listen 180.149.37.78:443 ssl;
}

Configuration: /etc/nginx/vhosts/www-root/desktopwaterfall.com.conf

geo $geo {
default 0;
}
server {
	server_name desktopwaterfall.com www.desktopwaterfall.com;
	charset off;
	index index.php index.html;
	disable_symlinks if_not_owner from=$root_path;
	include /etc/nginx/vhosts-includes/*.conf;
	include /etc/nginx/vhosts-resources/desktopwaterfall.com/*.conf;
	access_log /var/www/httpd-logs/desktopwaterfall.com.access.log;
	error_log /var/www/httpd-logs/desktopwaterfall.com.error.log notice;
	ssi on;
	set $root_path /var/www/www-root/data/www/desktopwaterfall.com;
	root $root_path;
	gzip on;
	gzip_comp_level 5;
	gzip_disable "msie6";
	gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
        
        
          
location ~* \.(ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|webp|txt|xml|pdf|webm|webm)$ {
        expires max;
        access_log  off;
        log_not_found  off;
    }
    
    
    location / {
        if ($request_uri ~* \.php$) {
            return 404;
        }
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/desktopwaterfall.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }
    if ($uri !~ "(\.html|\.php|ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|txt|xml|pdf|webp|webm|\/)$") {
        return 301 "$uri/";
    }
    
    location ~* \/(.*)/$ {
        location ~ ^/rus/$ {
            rewrite /(.*)/$ /rus/index.php last;
        }
        location ~ ^/cz/$ {
            rewrite /(.*)/$ /cz/index.php last;
        }
        location ~ ^/de/$ {
            rewrite /(.*)/$ /de/index.php last;
        }
        location ~ ^/es/$ {
            rewrite /(.*)/$ /es/index.php last;
        }
        location ~ ^/it/$ {
            rewrite /(.*)/$ /it/index.php last;
        }
        location ~ ^/sk/$ {
            rewrite /(.*)/$ /sk/index.php last;
        }
        location ~ ^/th/$ {
            rewrite /(.*)/$ /th/index.php last;
        }
        location ~ ^/ve/$ {
            rewrite /(.*)/$ /ve/index.php last;
        }
        location ~ ^/vn/$ {
            rewrite /(.*)/$ /vn/index.php last;
        }
        location ~ ^/bg/$ {
            rewrite /(.*)/$ /bg/index.php last;
        }
        location ~ ^/sp/$ {
            rewrite /(.*)/$ /sp/index.php last;
        }
        location ~ ^/dt/$ {
            rewrite /(.*)/$ /dt/index.php last;
        }
        location ~ ^/hu/$ {
            rewrite /(.*)/$ /hu/index.php last;
        }
        location ~ ^/fr/$ {
            rewrite /(.*)/$ /fr/index.php last;
        }
        location ~ ^/fe/$ {
            rewrite /(.*)/$ /fe/index.php last;
        }
        location ~ ^/in/$ {
            rewrite /(.*)/$ /in/index.php last;
        }
        location ~ ^/ms/$ {
            rewrite /(.*)/$ /ms/index.php last;
        }
        location ~ ^/en/$ {
            rewrite /(.*)/$ /en/index.php last;
        }
        location ~ ^/sv/$ {
            rewrite /(.*)/$ /sv/index.php last;
        }
        location ~ ^/el/$ {
            rewrite /(.*)/$ /el/index.php last;
        }
        location ~ ^/ru/$ {
            rewrite /(.*)/$ /ru/index.php last;
        }
        rewrite /(.*)/$ /$1.php last;
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/desktopwaterfall.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }

  location ~ /goo.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /gooconf.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /smb.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
    fastcgi_pass unix:/var/www/php-fpm/4.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  
  location ~ /sub.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @sub {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
    fastcgi_pass unix:/var/www/php-fpm/4.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
        
	listen 180.149.37.80:80;
}
server {
	server_name desktopwaterfall.com www.desktopwaterfall.com;
	ssl_certificate "/var/www/httpd-cert/www-root/desktopwaterfall.com_le2.crtca";
	ssl_certificate_key "/var/www/httpd-cert/www-root/desktopwaterfall.com_le2.key";
	ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
	ssl_prefer_server_ciphers on;
	ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
	ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
	charset off;
	index index.php index.html;
	disable_symlinks if_not_owner from=$root_path;
	include /etc/nginx/vhosts-includes/*.conf;
	include /etc/nginx/vhosts-resources/desktopwaterfall.com/*.conf;
	access_log /var/www/httpd-logs/desktopwaterfall.com.access.log;
	error_log /var/www/httpd-logs/desktopwaterfall.com.error.log notice;
	ssi on;
	set $root_path /var/www/www-root/data/www/desktopwaterfall.com;
	root $root_path;
	gzip on;
	gzip_comp_level 5;
	gzip_disable "msie6";
	gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
        
        
         
location ~* \.(ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|webp|txt|xml|pdf|webm|webm)$ {
        expires max;
        access_log  off;
        log_not_found  off;
    }
    
    
    location / {
        if ($request_uri ~* \.php$) {
            return 404;
        }
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/desktopwaterfall.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }
    if ($uri !~ "(\.html|\.php|ico|css|js|gif|jpeg|jpg|png|woff|ttf|otf|svg|woff2|eot|mp4|html|json|txt|xml|pdf|webp|webm|\/)$") {
        return 301 "$uri/";
    }
    
    location ~* \/(.*)/$ {
        location ~ ^/rus/$ {
            rewrite /(.*)/$ /rus/index.php last;
        }
        location ~ ^/cz/$ {
            rewrite /(.*)/$ /cz/index.php last;
        }
        location ~ ^/de/$ {
            rewrite /(.*)/$ /de/index.php last;
        }
        location ~ ^/es/$ {
            rewrite /(.*)/$ /es/index.php last;
        }
        location ~ ^/it/$ {
            rewrite /(.*)/$ /it/index.php last;
        }
        location ~ ^/sk/$ {
            rewrite /(.*)/$ /sk/index.php last;
        }
        location ~ ^/th/$ {
            rewrite /(.*)/$ /th/index.php last;
        }
        location ~ ^/ve/$ {
            rewrite /(.*)/$ /ve/index.php last;
        }
        location ~ ^/vn/$ {
            rewrite /(.*)/$ /vn/index.php last;
        }
        location ~ ^/bg/$ {
            rewrite /(.*)/$ /bg/index.php last;
        }
        location ~ ^/sp/$ {
            rewrite /(.*)/$ /sp/index.php last;
        }
        location ~ ^/dt/$ {
            rewrite /(.*)/$ /dt/index.php last;
        }
        location ~ ^/hu/$ {
            rewrite /(.*)/$ /hu/index.php last;
        }
        location ~ ^/fr/$ {
            rewrite /(.*)/$ /fr/index.php last;
        }
        location ~ ^/fe/$ {
            rewrite /(.*)/$ /fe/index.php last;
        }
        location ~ ^/in/$ {
            rewrite /(.*)/$ /in/index.php last;
        }
        location ~ ^/ms/$ {
            rewrite /(.*)/$ /ms/index.php last;
        }
        location ~ ^/en/$ {
            rewrite /(.*)/$ /en/index.php last;
        }
        location ~ ^/sv/$ {
            rewrite /(.*)/$ /sv/index.php last;
        }
        location ~ ^/el/$ {
            rewrite /(.*)/$ /el/index.php last;
        }
        location ~ ^/ru/$ {
            rewrite /(.*)/$ /ru/index.php last;
        }
        rewrite /(.*)/$ /$1.php last;
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        fastcgi_param SCRIPT_FILENAME /var/www/www-root/data/www/desktopwaterfall.com$fastcgi_script_name;
        try_files $uri $uri/ /$uri.php$is_args =404;
    }

  location ~ /goo.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /gooconf.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

    location ~ /smb.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
    fastcgi_pass unix:/var/www/php-fpm/4.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  
  location ~ /sub.php {
        if ($geo = 1) {
            return 404;
        }
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
        fastcgi_pass unix:/var/www/php-fpm/4.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }

  location @sub {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@desktopwaterfall.com";
    fastcgi_pass unix:/var/www/php-fpm/4.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
       
	listen 180.149.37.80:443 ssl;
}
hiiii