mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 17:41:50 -04:00
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}' {} +
9 lines
193 B
Text
9 lines
193 B
Text
tls local-tls {
|
|
key-file "key.pem";
|
|
cert-file "cert.pem";
|
|
protocols { unknown; TLSv1.2; }; # bad TLS protocol version name
|
|
};
|
|
|
|
options {
|
|
listen-on port 853 tls local-tls { 10.53.0.1; };
|
|
};
|