Create a new dns template to apply to your domains

Here is an example of a new DNS template that you can apply to your domains:

Template Name: "Basic Website Template"

Template Description: A basic DNS template for a website with a single domain and a few common services.

Template Settings:

Template Code:

; yourdomain.com
@ IN SOA ns1.yourdomain.com. hostmaster.yourdomain.com. (
        3600 ; refresh
        3600 ; retry
        604800 ; expire
        3600 ) ; minimum

@ IN NS ns1.yourdomain.com.
@ IN NS ns2.yourdomain.com.

www IN A 192.0.2.1
mail IN A 192.0.2.2

blog IN CNAME www.yourdomain.com.
store IN CNAME www.yourdomain.com.

yourdomain.com. IN MX 10 mail.yourdomain.com.
yourdomain.com. IN TXT "v=spf1 a mx ~all"

How to Apply the Template:

  1. Create a new DNS zone in your DNS provider's control panel.
  2. Copy and paste the template code into the DNS zone editor.
  3. Replace <yourdomain.com> with your actual domain name.
  4. Update the IP addresses and other settings as needed.
  5. Save the changes to the DNS zone.

Note: This is just an example template and you should adjust it according to your specific needs and requirements. Additionally, you may need to add or modify records depending on the services you use (e.g. email, web hosting, etc.).