feat(homelab): start implementing route generation

This commit is contained in:
2025-12-28 01:58:34 -08:00
parent d1b81ce0db
commit 0993820675
16 changed files with 879 additions and 49 deletions

33
nix/homelab/config.toml Normal file
View File

@@ -0,0 +1,33 @@
routes = [
{
name = "gitea",
hostname = "git",
namespace = "git",
service = "gitea-http",
port = 3000,
private = false
},
{
name = "sonarr",
hostname = "sonarr",
namespace = "media",
port = 8787,
private = true
},
{
name = "longhorn",
hostname = "storage",
namespace = "longhorn-system",
service = "longhorn-frontend",
port = 80,
private = true
},
{
name = "pihole",
hostname = "pihole",
namespace = "pihole-system",
service = "pihole-web",
port = 80,
private = true
}
]