26 lines
650 B
Nix
26 lines
650 B
Nix
{ config, lib, tools, ... }:
|
|
with tools.nginx;
|
|
{
|
|
reservePortsFor = [ "ombi" ];
|
|
|
|
services = {
|
|
radarr = {
|
|
enable = true;
|
|
};
|
|
sonarr = {
|
|
enable = true;
|
|
};
|
|
ombi = {
|
|
enable = true;
|
|
port = config.ports.ombi;
|
|
};
|
|
|
|
nginx.virtualHosts = mappers.mapSubdomains {
|
|
radarr = vhosts.proxy "http://127.0.0.1:7878";
|
|
sonarr = vhosts.proxy "http://127.0.0.1:8989";
|
|
fbi-requests = vhosts.proxy "http://127.0.0.1:${config.portsStr.ombi}";
|
|
};
|
|
};
|
|
systemd.services.radarr.serviceConfig.Slice = "mediamanagement.slice";
|
|
systemd.services.sonarr.serviceConfig.Slice = "mediamanagement.slice";
|
|
}
|