feat: added sabnzbd support

This commit is contained in:
kity 2024-12-27 13:52:47 +01:00
parent 4bdec356fa
commit d1297eda99

View file

@ -0,0 +1,18 @@
{config, pkgs, ...}:
{
services.sabnzbd = {
enable = true;
};
services.caddy.virtualHosts."http://sabnzbd.normandy.sisyphe.hypervirtual.world".extraConfig = ''
reverse_proxy 8080
'';
/*
services.prometheus.exporters.sabnzbd = {
enable = true;
servers = [
localhost
]
};*/
}