Control Web Panel

WebPanel => Installation => Topic started by: itmonitor on March 11, 2019, 09:00:48 PM

Title: Adding CAA record on CWP
Post by: itmonitor on March 11, 2019, 09:00:48 PM
Hello,

How to add a CAA record on CWP? Is it through a CNAME, TXT, PTR or other? Where do I add it in CWP.

Any advice is welcome

rgs
Title: Re: Adding CAA record on CWP
Post by: Netino on March 13, 2019, 04:13:11 AM
Good point.
CWP seems not have CAA record in DNS functions.
CAA records are growing in importance in global internet, as several authorities begin to emerge offering free certificates, posing security problems to domain owners.

May be you have do it only manually, at the moment.

Regards,
Netino
Title: Re: Adding CAA record on CWP
Post by: itmonitor on March 14, 2019, 12:00:55 AM
Thank you. How to do it manually?
Title: Re: Adding CAA record on CWP
Post by: Netino on March 15, 2019, 04:33:29 AM
Edit your zone file in '/var/named' directory.
For example, for a "example.com" domain, the file '/var;named/domain.com.db'.

And add the following at the final of that file, for exemple to the Let’s Encrypt certificate authority,:
Code: [Select]
example.com.  CAA 0 issue "letsencrypt.org"

If you want to allow Let’s Encrypt for wildcard certificates, then you can use issuewild:
Code: [Select]
example.com.  CAA 0 issuewild "letsencrypt.org"

Save the changes, and restart named:
(for CentOS 7)
Code: [Select]
# systemctl restart named

(for CentOS 6.*)
Code: [Select]
# service named restart
Title: Re: Adding CAA record on CWP
Post by: itmonitor on April 14, 2019, 05:27:47 PM
it works. Thank you.  :)
Title: Re: Adding CAA record on CWP
Post by: josemnunez on April 15, 2019, 01:22:33 PM
Thanks for the comments, in our next version we will have this new record in the list of options
Title: Re: Adding CAA record on CWP
Post by: Freespirits_GR_Host on January 26, 2021, 10:19:03 AM
Thank you Netino.
That saved me a lot of time as trying to add CAA through panel was not possible.