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