| Server IP : 68.178.172.28 / Your IP : 216.73.216.32 Web Server : Apache System : Linux 28.172.178.68.host.secureserver.net 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64 User : kiskarnal ( 1003) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/nginx/ea-nginx/ |
Upload File : |
server {
listen 80[% IF reuseport %] reuseport[% END %];
[% IF !ipv6 %]# server does not have IPv6 enabled: [% END %]listen [::]:80[% IF reuseport %] reuseport[% END %];
# We want SSL for this server so http:// and https:// work the same for these server_name’s
listen 443 ssl[% IF reuseport %] reuseport[% END %];
[% IF !ipv6 %]# server does not have IPv6 enabled: [% END %]listen [::]:443 ssl[% IF reuseport %] reuseport[% END %];
http2 [% http2 ? "on" : "off" %];
ssl_certificate [% ssl_certificate %];
ssl_certificate_key [% ssl_certificate_key %];
# $hostname because we do not want the machine's hostname to be treated as a service subdomain
# (e.g. $hostname is cpanel.example.com)
# 127.0.0.1 and localhost so that those are handled consistently like $hostname
server_name 127.0.0.1 localhost $hostname;
location / {
include conf.d/includes-optional/cpanel-proxy.conf;
proxy_pass http://$CPANEL_APACHE_PROXY_IP:$CPANEL_APACHE_PROXY_PORT;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
[%- IF uid %]
set $USER_ID "";
[% END -%]
include conf.d/server-includes/*.conf;
}