dotfiles/common/users/docker/sonarr/nginx.nix
2025-03-09 18:59:36 -04:00

18 lines
316 B
Nix

{ ... }:
{
services = {
nginx = {
virtualHosts = {
"sonarr.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "https://localhost:8989";
};
};
};
};
};
};
}