mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
23 lines
408 B
Nix
23 lines
408 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.seerr = {
|
|
enable = true;
|
|
};
|
|
|
|
services.nginx.virtualHosts."requests.m7.rs" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:${toString config.services.seerr.port}";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
|
|
environment.persistence."/persist".directories = [
|
|
"/var/lib/private/jellyseerr"
|
|
];
|
|
}
|