host radarr and sonarr online

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

View file

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