Initial commit

This commit is contained in:
2025-11-06 20:28:41 +01:00
commit 5fc4fbcef3
182 changed files with 4742 additions and 0 deletions

1
home/pihole/.secrets Normal file
View File

@@ -0,0 +1 @@
webserver-password=.\_,`>ol9=.f+Y{R

View File

@@ -0,0 +1,4 @@
#!/bin/bash
set -o errexit -o noclobber -o pipefail -o nounset
podman exec unbound sh -c "/usr/bin/curl -sSL https://www.internic.net/domain/named.cache -o /usr/local/unbound/iana.d/root.hints"

View File

@@ -0,0 +1,7 @@
#!/bin/bash
set -o errexit -o noclobber -o pipefail -o nounset
podman exec unbound sh -c "curl -sSL https://www.internic.net/domain/named.cache -o /usr/local/unbound/iana.d/root.hints"
podman exec unbound sh -c "curl -sSL https://www.internic.net/domain/root.zone -o /usr/local/unbound/iana.d/root.zone"
podman exec unbound sh -c "unbound-anchor -v -a /usr/local/unbound/iana.d/root.key"
systemctl --user restart unbound