This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
1
CentOS 8 Problems / Re: Name Servers not resolving
« on: September 22, 2023, 02:19:02 PM »That wasn't the intent Overseer.I wasn't suggesting shameless self-promotion, but I do understand the value of links pointing to authoritative sources for SEO purposes. Hence my unprovoked link back to your root site
Although the Support Downloads section does have some nice links.

2
CentOS 8 Problems / Re: Name Servers not resolving
« on: September 21, 2023, 02:23:59 AM »Here's a link: https://starburstservices.com/Good to know where to go for hosting & help!
3
SSL / Re: static.cdn-cwp.com & wiki.centos-webpanel.com SSL expired
« on: September 20, 2023, 01:16:45 AM »
yup.
4
SSL / Re: Wrong SSL renew
« on: September 19, 2023, 06:20:04 AM »
Do you have an HTTP -> HTTPS redirect in place for the domain? LetsEncrypt needs to have a working HTTP connection in order to confirm the domain before issuing the certificate.
5
CentOS 7 Problems / Re: User redirects to another domain - Unable to fix
« on: September 17, 2023, 08:10:38 PM »
Did you look at the root_cwp database and clear any relevant entries under the subdomains table?
6
Mod_Security / Re: ModSecurity: Access denied with code 403 (phase 1). Matched phrase "/.env
« on: September 17, 2023, 03:25:49 PM »
Are you using the OWASP or Comodo ruleset with ModSecurity? Comodo is recommended for mere mortals as a starting point; less false-positives and more permissive by default.
7
Installation / Re: Reverse proxy?
« on: September 16, 2023, 06:42:47 PM »
What's your overall goal?
CWP offers Nginx if you want to use it as a reverse proxy on the server itself.
CWP offers Nginx if you want to use it as a reverse proxy on the server itself.
8
CentOS 7 Problems / Re: Google indexing link to CWP
« on: September 16, 2023, 06:41:31 PM »
Sorry, I should've checked for you, but those CWP directories themselves are immutable already. So start by removing the immutable bit on the directories:
Then create the robots.txt files:
Set the immutable bit on the robots.txt files:
Finally, reset the immutable bit on the CWP directories:
Code: [Select]
chattr -i /usr/local/cwpsrv/htdocs/admin/admin
chattr -i /usr/local/cwpsrv/htdocs/admin
Then create the robots.txt files:
Code: [Select]
nano /usr/local/cwpsrv/htdocs/admin/admin/robots.txt
nano /usr/local/cwpsrv/htdocs/admin/robots.txt
Set the immutable bit on the robots.txt files:
Code: [Select]
chattr +i /usr/local/cwpsrv/htdocs/admin/admin/robots.txt
chattr +i /usr/local/cwpsrv/htdocs/admin/robots.txt
Finally, reset the immutable bit on the CWP directories:
Code: [Select]
chattr +i /usr/local/cwpsrv/htdocs/admin/admin
chattr +i /usr/local/cwpsrv/htdocs/admin
9
CentOS 7 Problems / Re: Google indexing link to CWP
« on: September 15, 2023, 10:20:46 PM »
You may have to create the files on the server via a root shell using the nano text editor. Then you would also want to make them immutable, otherwise the next CWP update would likely delete them.
Code: [Select]
chattr +i /usr/local/cwpsrv/htdocs/admin/robots.txt
chattr +i /usr/local/cwpsrv/htdocs/admin/admin/robots.txt
10
DNS / Re: domain1 to domain2
« on: September 15, 2023, 05:48:46 PM »
You want domain1 and domain2 to have the same content? If so, you don't need separate user accounts, you just make domain2 and Add-on domain to user A's account, so it contains both domain1 and domain2.
11
MySQL / Re: FTP stopped after the MariaDB upgrade
« on: September 15, 2023, 02:05:15 PM »
Duplicate thread?
12
FTP / Re: FTP stopped after the MariaDB upgrade
« on: September 15, 2023, 02:02:56 PM »
What version of pure-ftpd are you running? Did you originally configure it with the recommended changes in the wiki?
https://wiki.centos-webpanel.com/category/ftp
Also, this is a good general working guide to configuring a CWP server from scratch:
https://www.awsmonster.com/cwp-installation-and-configuration_12
https://wiki.centos-webpanel.com/category/ftp
Also, this is a good general working guide to configuring a CWP server from scratch:
https://www.awsmonster.com/cwp-installation-and-configuration_12
13
How to / Re: Direct domain name to proper directory
« on: September 15, 2023, 01:58:39 PM »
When you made the new user account, did it not create the public_html folder under the /home/userdir path, along with a www symlink?
To replicate your live server to a staging/backup server, are you using CWP Migration to clone your accounts?
To replicate your live server to a staging/backup server, are you using CWP Migration to clone your accounts?
14
Installation / Re: ubuntu with arm64
« on: September 14, 2023, 10:46:39 PM »
I would not recommend CentOS Stream 8, as it is EOL soon. Look toward AlmaLinux 8.8, as you can then ELevate to v9 when CWP fully support EL9 distributions (hopefully soon, per the devs).
15
CentOS 7 Problems / Re: Which files should I remove to decrease the /dev/mapper/centos-root size.
« on: September 14, 2023, 08:42:37 PM »
Scan for large, ballooning log files, as Igor indicated. Truncate them to zero bytes:
Code: [Select]
truncate -s0 /usr/local/apache/logs/*
truncate -s0 /usr/local/apache/domlogs/*.log
Then implement logrotate to keep logs from growing exponentially in size.