removed proxy for torrent, nzb, multi-scrobbler

This commit is contained in:
2024-09-27 23:59:42 -06:00
parent 23d69d9691
commit 2485f544fb
7 changed files with 35 additions and 66 deletions

View File

@@ -1,19 +1,11 @@
{
lib,
config,
proxyReverse,
...
}:
{ lib, config, ... }:
{
options.my.servers.sabnzbd.enable = lib.mkEnableOption "enable";
config = lib.mkIf config.my.servers.sabnzbd.enable {
services = {
sabnzbd = {
enable = true;
group = "piracy";
openFirewall = true;
};
nginx.virtualHosts."HSoeJdGRd2Orj0n31UGI.${config.my.domain}" = proxyReverse 3399 // { };
services.sabnzbd = {
enable = true;
group = "piracy";
openFirewall = true;
};
};
}