dotfiles/common/users/docker/radarr/nginx.nix
2025-03-10 00:47:50 -04:00

20 lines
317 B
Nix

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