
add a Configfile, like nginx-status.conf, to /etc/nginx/conf.dAdd this to the Conf File: Code: server { listen 127.0.0.1:7777 ## change the port to what you want; location /nginx_status { stub_status on; allow yourHomeIPv4; allow yourHomeIP...
CyberPanel picks this file: /usr/local/CyberCP/index.html You can replace it with your own version. Note - This Page also gets replaced every time when we update CP. So we have to take care of this. source: https://forums.cyberpanel.net/d...
The steps are:1. Go to openlitespeed admin page (:7080), go to Virtual Hosts and add a new vhost.2. Fill in these details:Virtual Host Name: *Virtual Host Root: /home/default (or any folder you want)Config File: $SERVER_ROOT/conf/vhosts/defaultvh/vhconf.confFolow Symbolik Link...
On server A: $ scp -r /path/to/directory someuser@serverB:/path/to/files/. The above command will copy the files from serverA to serverB using someuser (a user on serverB). The directory (/path/to/directory) will be copied as a directory to the directory on serverB into th...
Could it be possible that the overall number of open files exceeds your allotment? Test it with# lsof | wc -l Create a /etc/nginx/ulimit.global_params file and enterworker_rlimit_nofile 64000;into it. If the worker_rlimit_nofile entry is present in /etc/nginx/nginx.co...
That would have to be: db.users.find({"name": /.*m.*/}) or, similar: db.users.find({"name": /m/}) You're looking for something that contains "m" somewhere (SQL's '%' operator is equivalent to Regexp's '.*'), not something that has "m" anchored to the beginning of the strin...