]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Merge pull request #9099 from PowerDNS/omoerbeek-patch-1
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Thu, 14 May 2020 08:22:00 +0000 (10:22 +0200)
committerGitHub <noreply@github.com>
Thu, 14 May 2020 08:22:00 +0000 (10:22 +0200)
rec: don't suggest to add a TA for powerdns.com

pdns/recursordist/docs/dnssec.rst

index f7b57e354f001cfab6aa029826878f0e39499eef..a27342fbc3d75008de90adcd6ab776d39ba5e7a6 100644 (file)
@@ -92,12 +92,12 @@ The PowerDNS Recursor ships with the DNSSEC Root key built-in.
 Configuring DNSSEC key material must be done in the :ref:`setting-lua-config-file`, using :func:`addTA`.
 This function takes 2 arguments: the node in the DNS-tree and the data of the corresponding DS record.
 
-To e.g. add a trust anchor for the root and powerdns.com, use the following config in the Lua file:
+To e.g. add a trust anchor for the root and example.com, use the following config in the Lua file:
 
 .. code:: Lua
 
     addTA('.', "63149 13 1 a59da3f5c1b97fcd5fa2b3b2b0ac91d38a60d33a") -- This is not an ICANN root
-    addTA('powerdns.com', "44030 8 2 D4C3D5552B8679FAEEBC317E5F048B614B2E5F607DC57F1553182D49 AB2179F7")
+    addTA('example.com', "44030 8 2 D4C3D5552B8679FAEEBC317E5F048B614B2E5F607DC57F1553182D49 AB2179F7")
 
 For PowerDNS Recursor 4.1.x and below, use the :func:`addDS` function instead.