mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 11:19:59 -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}' {} +
17 lines
431 B
Text
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; };
|
|
};
|