17 lines
348 B
Nix
17 lines
348 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
nixarr.jellyseerr = {
|
|
# NOTE: cannot set password so just set the generated one manually
|
|
enable = true;
|
|
};
|
|
services.nginx.virtualHosts."jellyseerr.moritz.place" = {
|
|
forceSSL = true;
|
|
useACMEHost = "any.moritz.place";
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:5055";
|
|
};
|
|
};
|
|
}
|