Switch to using only sqlite.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
$ORIGIN fizz.buzz.
|
||||
@ 3600 IN SOA ns1.fizz.buzz. (
|
||||
dnsadm.choopa.com. ; E-Mail of responsible person
|
||||
2023061800 ; serial
|
||||
2023061900 ; serial
|
||||
7200 ; refresh (2 hours)
|
||||
3600 ; retry (1 hour)
|
||||
1209600 ; expire (2 weeks)
|
||||
@@ -9,25 +9,30 @@ $ORIGIN fizz.buzz.
|
||||
)
|
||||
|
||||
3600 IN NS ns1.fizz.buzz.
|
||||
; 3600 IN NS ns2.fizz.buzz.
|
||||
3600 IN NS ns2.fizz.buzz.
|
||||
3600 IN NS ns5.he.net.
|
||||
3600 IN NS ns4.he.net.
|
||||
3600 IN NS ns3.he.net.
|
||||
3600 IN NS ns2.he.net.
|
||||
3600 IN NS ns1.he.net.
|
||||
|
||||
; Allow receiving mail at fizz.buzz
|
||||
1h IN MX 10 in1-smtp.messagingengine.com
|
||||
1h IN MX 20 in2-smtp.messagingengine.com
|
||||
IN MX 10 in1-smtp.messagingengine.com
|
||||
IN MX 20 in2-smtp.messagingengine.com
|
||||
|
||||
; Allows receivers to know you send your mail via Fastmail, and other servers
|
||||
1h IN TXT v=spf1 include:spf.messagingengine.com ?all
|
||||
IN TXT v=spf1 include:spf.messagingengine.com ?all
|
||||
|
||||
ns1 IN A 74.80.180.138
|
||||
; ns2 IN A 74.80.180.138
|
||||
ns2 IN A 74.80.180.138
|
||||
|
||||
; Allow receiving mail on subdomains
|
||||
* 1h IN MX 10 in1-smtp.messagingengine.com
|
||||
* 1h IN MX 20 in2-smtp.messagingengine.com
|
||||
* IN MX 10 in1-smtp.messagingengine.com
|
||||
* IN MX 20 in2-smtp.messagingengine.com
|
||||
|
||||
; The A-records for mail.fizz.buzz override the wildcard, so we have to manually re-create the MX records
|
||||
mail 1h IN MX 10 in1-smtp.messagingengine.com
|
||||
mail 1h IN MX 20 in2-smtp.messagingengine.com
|
||||
mail IN MX 10 in1-smtp.messagingengine.com
|
||||
mail IN MX 20 in2-smtp.messagingengine.com
|
||||
|
||||
; Access webmail at mail.fizz.buzz
|
||||
mail IN A 103.168.172.47
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
launch=gsqlite3,bind
|
||||
launch=gsqlite3
|
||||
gsqlite3-database=/var/lib/powerdns/pdns.sqlite3
|
||||
gsqlite3-pragma-foreign-keys=yes
|
||||
bind-config=/usr/local/etc/pdns/bind.conf
|
||||
master=yes
|
||||
allow-axfr-ips=
|
||||
dnsupdate=yes
|
||||
allow-dnsupdate-from=
|
||||
allow-dnsupdate-from=10.215.1.0/24
|
||||
# Only notify on ipv4
|
||||
only-notify=0.0.0.0/0
|
||||
|
||||
# Autogenerated configuration file template
|
||||
|
||||
|
||||
Reference in New Issue
Block a user