From a4536e093f90b90cdb4b4883359b4fb0d1a088a0 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 27 Jan 2025 10:30:40 +0100 Subject: [PATCH] rec: fix forward zones example in YAML Fixes #15077 --- pdns/recursordist/settings/table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/settings/table.py b/pdns/recursordist/settings/table.py index a6f3269b50..d289666918 100644 --- a/pdns/recursordist/settings/table.py +++ b/pdns/recursordist/settings/table.py @@ -1074,7 +1074,7 @@ Queries for zones listed here will be forwarded to the IP address listed. i.e. .. code-block:: yaml recursor: - forward-zones: + forward_zones: - zone: example.org forwarders: - 203.0.113.210 @@ -1087,7 +1087,7 @@ Multiple IP addresses can be specified and port numbers other than 53 can be con .. code-block:: yaml recursor: - forward-zones: + forward_zones: - zone: example.org forwarders: - 203.0.113.210:5300 -- 2.47.2