add hetzner-dns for intranet challenges
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 3s
Flake check / flake-check (pull_request) Failing after 3s

This commit is contained in:
sid 2026-04-03 15:36:07 +02:00
parent 4c166e1c47
commit 245d853b05
4 changed files with 43 additions and 32 deletions

View file

@ -1,5 +1,6 @@
rec {
domain = "sid.ovh";
intranet = "intra." + domain;
hosts = {
sid = {
ip = "100.64.0.6";
@ -24,7 +25,7 @@ rec {
port = 8085;
};
netdata = {
fqdn = "netdata.intra." + domain;
fqdn = "netdata." + intranet;
port = 19999;
};
open-webui-oci = {
@ -40,11 +41,11 @@ rec {
port = 1200;
};
vaultwarden = {
fqdn = "pw.intra." + domain;
fqdn = "pw." + intranet;
port = 8222;
};
webdav = {
fqdn = "dav.intra." + domain;
fqdn = "dav." + intranet;
port = 8080;
};
};