host radarr and sonarr online

This commit is contained in:
Lillian-Violet 2024-01-03 23:13:11 +01:00
parent 07fdca6298
commit 99d7e48a97
2 changed files with 24 additions and 0 deletions

View file

@ -7,4 +7,16 @@
services.radarr = { services.radarr = {
enable = true; enable = true;
}; };
services.nginx = {
virtualHosts = {
"radarr.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:7878";
};
};
};
};
} }

View file

@ -7,4 +7,16 @@
services.radarr = { services.radarr = {
enable = true; enable = true;
}; };
services.nginx = {
virtualHosts = {
"radarr.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:8989";
};
};
};
};
} }