2023-02-08 10:00:35 +00:00
|
|
|
; This is trying to be discrete with certain information. This should be copied
|
|
|
|
; and replaced with more confidential information somewhere.
|
2023-02-14 02:51:15 +00:00
|
|
|
$TTL 12h
|
2023-06-22 09:56:47 +00:00
|
|
|
$ORIGIN foodogsquared.one.
|
2023-02-08 10:00:35 +00:00
|
|
|
|
2024-10-07 05:03:36 +00:00
|
|
|
@ 3600 IN SOA ns1.first-ns.de. hostmaster (
|
|
|
|
2024100601 ; serial number
|
2023-02-17 15:10:52 +00:00
|
|
|
1h ; refresh
|
2023-02-08 10:00:35 +00:00
|
|
|
15m ; update retry
|
|
|
|
3w ; expiry
|
|
|
|
3h ; nx = nxdomain ttl
|
2023-02-10 07:57:34 +00:00
|
|
|
)
|
2023-02-17 15:10:52 +00:00
|
|
|
3600 IN NS ns1.first-ns.de.
|
|
|
|
3600 IN NS robotns2.second-ns.de.
|
|
|
|
3600 IN NS robotns3.second-ns.com.
|
2023-02-08 10:00:35 +00:00
|
|
|
|
|
|
|
; Setting up the mail-related DNS entries.
|
2024-09-20 04:33:26 +00:00
|
|
|
; https://mxroutedocs.com/
|
|
|
|
@ IN MX 10 heracles.mxrouting.net.
|
|
|
|
IN MX 20 heracles-relay.mxrouting.net.
|
2024-09-28 11:01:59 +00:00
|
|
|
IN TXT v=spf1 include:mxlogin.com -all
|
2023-02-12 16:28:41 +00:00
|
|
|
|
2024-10-02 13:15:13 +00:00
|
|
|
; Setting up custom hostnames for our domain, hell yeah.
|
|
|
|
; For more information, see https://mxroutedocs.com/branding/customhostnames/.
|
|
|
|
mail IN CNAME heracles.mxrouting.net.
|
|
|
|
webmail IN CNAME heracles.mxrouting.net.
|
|
|
|
|
2023-02-12 16:28:41 +00:00
|
|
|
; Protect the validity of my emails sent by me!!!!
|
2024-09-28 11:01:59 +00:00
|
|
|
x._domainkey 3600 IN TXT v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyLlrgdsO4jLncMoGAowlE14oB9R2ESxNLRBtkzc24LOPJ1CwEIE+5AHZd+ZRMwiD7fdXcyCH7/E1BRXWT+TtLnKnBgf5I0z6EbPqiPPb6nmpDWrbZzA2mdKetAKz0kFJC8oYK7lQF7Bdh57y/HWksoH6yjl1E88m8tEQ/thlyABGjqzV+txgmc1BryFu23KasqI2c4We/KgvsoSSAaUHkjpAMCuJck/P0G9mJWyTHrnZN2gCotyenLBZew0BIbiA2XYp6dQW4sU+MawfZ0E1KA0lem0SRYCB+sGD248uj4xVo9sIiCVyO9EQXy/YCZTeuTQHf1+QeFzI82vIrlv63QIDAQAB
|
2023-02-12 16:28:41 +00:00
|
|
|
|
|
|
|
; Protect my domain email from spoofing.
|
2024-09-28 11:01:59 +00:00
|
|
|
_dmarc 400 IN TXT v=DMARC1;p=none;rua=mailto:postmaster@foodogsquared.one;ruf=mailto:admin@foodogsquared.one
|
2023-02-12 16:28:41 +00:00
|
|
|
|
2023-02-08 10:00:35 +00:00
|
|
|
; My websites that are deployed by somewhere else.
|
2023-02-10 13:09:05 +00:00
|
|
|
@ IN A 75.2.60.5
|
2023-02-08 10:00:35 +00:00
|
|
|
www IN CNAME foodogsquared.netlify.app.
|
|
|
|
wiki IN CNAME foodogsquared-wiki.netlify.app.
|
|
|
|
|
2023-02-10 13:09:05 +00:00
|
|
|
; Public-facing services from this server. Just remember to increment the
|
|
|
|
; serial number once the public IPs changes. PLEEEEEEEEEEEAAAAAAAAASE!
|
2023-06-22 09:56:47 +00:00
|
|
|
plover IN A @ploverWANIPv4@
|
2023-06-22 14:52:17 +00:00
|
|
|
IN AAAA @ploverWANIPv6@
|
|
|
|
|
|
|
|
ns1 IN A @ploverWANIPv4@
|
|
|
|
IN AAAA @ploverWANIPv6@
|
2023-02-17 15:10:52 +00:00
|
|
|
|
2023-02-23 17:29:23 +00:00
|
|
|
auth IN CNAME plover
|
|
|
|
pass IN CNAME plover
|
|
|
|
code IN CNAME plover
|
|
|
|
vpn IN CNAME plover
|
2023-07-27 03:14:32 +00:00
|
|
|
mux IN CNAME plover
|
2023-10-08 06:40:57 +00:00
|
|
|
vouch IN CNAME plover
|
2023-02-23 17:29:23 +00:00
|
|
|
|
2023-06-22 09:56:47 +00:00
|
|
|
postgres IN CNAME plover
|
2023-10-08 06:40:57 +00:00
|
|
|
monitoring IN CNAME plover
|
2023-06-22 09:56:47 +00:00
|
|
|
|
2023-02-08 10:00:35 +00:00
|
|
|
; Other things.
|
2023-02-10 13:09:05 +00:00
|
|
|
_github-pages-challenge-foo-dogsquared IN TXT 673febae1ea0095e76d1e02a7a1709
|
2023-02-08 10:00:35 +00:00
|
|
|
|
|
|
|
; vim: expandtab! tabstop=8 shiftwidth=8 filetype=dns
|