feat: add vikunja

This commit is contained in:
Katharina Heidenreich 2026-04-04 17:13:46 +02:00
commit e38ffbedf4
8 changed files with 145 additions and 89 deletions

View file

@ -0,0 +1,32 @@
let
net = import ../network.nix;
services = import ../services.nix;
in
[
{
type = "proxy";
domain = "torrent.${net.local_domain}";
endpoint = "/";
force_ssl = false;
port = 80;
content = {
type = "service";
ip = net.devices.pi.ip;
port = services.qbittorrent.port;
proxyWebsockets = false;
};
}
{
type = "proxy";
domain = "wiki.${net.local_domain}";
endpoint = "/";
force_ssl = false;
port = 80;
content = {
type = "service";
ip = net.devices.pi.ip;
port = services.kiwix.port;
proxyWebsockets = true;
};
}
]