mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-18 10:17:03 -04:00
20 lines
317 B
Nix
20 lines
317 B
Nix
|
|
|
|
{ ... }:
|
|
{
|
|
services = {
|
|
nginx = {
|
|
virtualHosts = {
|
|
"radarr.sadan.zip" = {
|
|
forceSSL = true;
|
|
useACMEHost = "sadan.zip";
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://localhost:9696";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|