mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 05:19:33 +01:00
feat: added sabnzbd support
This commit is contained in:
parent
4bdec356fa
commit
d1297eda99
18
hosts/sisyphe/features/multimedia/sabnzbd.nix
Normal file
18
hosts/sisyphe/features/multimedia/sabnzbd.nix
Normal 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
|
||||
]
|
||||
};*/
|
||||
}
|
Loading…
Reference in a new issue