dotfiles/common/users/docker/radarr/nginx.nix
sadan 4faa782d1c
fix flaresolverr
why was this in radarrs file in the first place ???
2025-03-12 23:50:10 -04:00

20 lines
317 B
Nix

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