mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-20 11:17:02 -04:00
19 lines
353 B
Nix
19 lines
353 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
nginx = {
|
|
virtualHosts = {
|
|
"sonarr.sadan.zip" = {
|
|
forceSSL = true;
|
|
useACMEHost = "sadan.zip";
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://localhost:8989";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|