bind9/bin/tests/system/checkconf/good-proxy.conf
Nicki Křížek d738b907dc Remove license headers from named.conf test files
The removal was done with the following commands:

find bin/tests/system/ -type f -name "*.conf" -exec sed -i '1,12d; 13{/^$/d}' {} +
find bin/tests/system/ -type f -name "*.conf.*" -exec sed -i '1,12d; 13{/^$/d}' {} +
2026-03-31 17:57:58 +02:00

17 lines
431 B
Text

tls local-tls {
protocols { TLSv1.2; };
key-file "key.pem";
cert-file "cert.pem";
dhparam-file "dhparam.pem";
ciphers "HIGH:!aNULL:!MD5:!RC4";
prefer-server-ciphers yes;
session-tickets no;
};
options {
allow-proxy { any; };
allow-proxy-on { any; };
listen-on proxy plain { 10.53.0.1; };
listen-on port 853 proxy encrypted tls local-tls { 10.53.0.1; };
listen-on port 8530 proxy plain tls local-tls { 10.53.0.1; };
};