Show Posts

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.


Messages - overseer

Pages: [1] 2 3 ... 43
1
Apache / Re: Codeigniter 4
« on: September 28, 2023, 01:57:55 PM »
I do have a Codeigniter-created site running on one of my client's sites under CWP. So I can confirm that final deployment & testing did work under CWP. But the developer did most of the testing & debugging in house before final deployment on my server. And it just runs under Apache + php-fpm 7.4, now 8.1.

2
SSL / Re: Preventing CWP from Replacing Wildcard SSL Certificate
« on: September 27, 2023, 01:29:55 AM »
You can also make your wildcard cert immutable. Just be sure to watch the renewal date and take off the immutable bit when you want to replace it.
Code: [Select]
chattr +i *.yourdomain.com.pem

3
MySQL / Re: New MariaDB 11.0.x version gives error
« on: September 27, 2023, 01:26:37 AM »
Sorry, late to the party as usual. I'll give my lesser server a test go and see how I make out.

4
CentOS 8 Problems / Re: Name Servers not resolving
« on: September 22, 2023, 02:19:02 PM »
That wasn't the intent Overseer.   ???

Although the Support Downloads section does have some nice links.  8)
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 ;) "Every link helps..."

5
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!

6
SSL / Re: static.cdn-cwp.com & wiki.centos-webpanel.com SSL expired
« on: September 20, 2023, 01:16:45 AM »
yup.

7
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.

8
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?

9
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.

10
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.

11
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:
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

12
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

13
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.

14
MySQL / Re: FTP stopped after the MariaDB upgrade
« on: September 15, 2023, 02:05:15 PM »
Duplicate thread?

15
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

Pages: [1] 2 3 ... 43