This commit is contained in:
Jana Dönszelmann 2025-08-03 16:18:32 +02:00
parent 552eceaf18
commit d35531c1bd
No known key found for this signature in database
15 changed files with 365 additions and 4 deletions

View file

@ -0,0 +1,20 @@
{ ... }:
{
services.nginx = {
virtualHosts."radarr.donsz.nl" = {
forceSSL = true;
http2 = true;
enableACME = true;
locations."/" = {
proxyPass = "http://[::1]:7878";
};
};
};
services.radarr = {
enable = true;
group = "jellyfin";
user = "jellyfin";
};
}