All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
26 lines
676 B
Plaintext
26 lines
676 B
Plaintext
// Zone Configurations
|
|
// This file contains all zone definitions
|
|
|
|
// TSIG Key for whiskeylimahotel.de zone transfers
|
|
key "whiskeylimahotel.de.93.241.86.156" {
|
|
algorithm hmac-sha256;
|
|
secret "REPLACE_WITH_YOUR_BASE64_ENCODED_KEY";
|
|
};
|
|
|
|
// ACL for whiskeylimahotel.de zone transfers
|
|
acl "whiskeylimahotel-secondaries" {
|
|
key "whiskeylimahotel.de.93.241.86.156";
|
|
};
|
|
|
|
// Primary zones
|
|
zone "whiskeylimahotel.de" {
|
|
type primary;
|
|
file "whiskeylimahotel.de.zone";
|
|
allow-transfer { "whiskeylimahotel-secondaries"; };
|
|
};
|
|
|
|
// Add additional zones here following the same pattern:
|
|
// zone "example.com" {
|
|
// type primary;
|
|
// file "example.com.zone";
|
|
// }; |