dotfiles/common/users/docker/radarr/nginx.nix

23 lines
368 B
Nix

{ ... }:
{
services = {
flaresolverr = {
enable = true;
};
nginx = {
virtualHosts = {
"radarr.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "http://localhost:9696";
};
};
};
};
};
};
}