Compare commits
2 commits
8f92fe37cd
...
7c362f5a42
Author | SHA1 | Date | |
---|---|---|---|
7c362f5a42 | |||
70a3d521c2 |
2 changed files with 9 additions and 2 deletions
|
@ -55,9 +55,10 @@
|
|||
# Enable automatic DNSSEC signing on all zones. The KSK must be
|
||||
# configured in the parent zone. Use the following command to get the
|
||||
# required record(s):
|
||||
# > nix shell nixpkgs#knot-dns -c sudo keymgr caspervk.net ds
|
||||
# > sudo keymgr caspervk.net ds
|
||||
# [<zone> <record-type> <key-tag> <algorithm-type> <digest-type> <digest>]
|
||||
# https://knot.readthedocs.io/en/master/configuration.html#automatic-dnssec-signing
|
||||
# DNSSEC can be validated using https://dnsviz.net.
|
||||
dnssec-signing = "on";
|
||||
dnssec-policy = "default";
|
||||
# Knot overwrites the zonefiles with auto-generated DNSSEC records by
|
||||
|
|
|
@ -91,7 +91,13 @@
|
|||
};
|
||||
|
||||
networking = {
|
||||
firewall.allowedUDPPorts = [51820 51821];
|
||||
firewall.allowedTCPPorts = [
|
||||
25 # @sortseer.dk
|
||||
];
|
||||
firewall.allowedUDPPorts = [
|
||||
51820 # wg-sigma-public
|
||||
51821 # wg-sigma-p2p
|
||||
];
|
||||
};
|
||||
|
||||
age.secrets.wireguard-preshared-key-file = {
|
||||
|
|
Loading…
Reference in a new issue