NixOS-Config/nixos/server/package-configs/ombi/configuration.nix

69 lines
1.3 KiB
Nix
Raw Normal View History

2024-01-04 14:49:45 +01:00
{
config,
pkgs,
...
}: {
users.users = {
ombi.extraGroups = ["radarr" "sonarr" "aria2"];
};
services.ombi = {
enable = true;
port = 2368;
};
users.users = {
radarr.extraGroups = ["aria2"];
sonarr.extraGroups = ["aria2"];
2024-01-04 14:51:50 +01:00
prowlarr = {
group = "prowlarr";
extraGroups = ["aria2"];
};
2024-01-04 14:49:45 +01:00
};
#uses port 7878
services.radarr = {
enable = true;
};
#uses port 8989
services.sonarr = {
enable = true;
};
services.prowlarr = {
enable = true;
};
services.nginx = {
virtualHosts = {
"ombi.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:2368";
};
};
"radarr.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:7878";
};
};
"sonarr.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:8989";
};
};
"prowlarr.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:9696";
};
};
};
};
}