Added some services

This commit is contained in:
baduhai 2022-12-24 17:02:40 -03:00
parent ed4db17f0d
commit 332f8d9238

View file

@ -98,6 +98,68 @@
locations."/".proxyPass = "http://127.0.0.1:${toString config.services.shiori.port}"; locations."/".proxyPass = "http://127.0.0.1:${toString config.services.shiori.port}";
}; };
radarr = {
enable = true;
group = "hosted";
};
nginx.virtualHosts."radarr.baduhai.me" = {
useACMEHost = "baduhai.me";
forceSSL = true;
kTLS = true;
locations."/".proxyPass = "http://127.0.0.1:7878";
};
sonarr = {
enable = true;
group = "hosted";
};
nginx.virtualHosts."sonarr.baduhai.me" = {
useACMEHost = "baduhai.me";
forceSSL = true;
kTLS = true;
locations."/".proxyPass = "http://127.0.0.1:8989";
};
bazarr = {
enable = true;
group = "hosted";
};
nginx.virtualHosts."bazarr.baduhai.me" = {
useACMEHost = "baduhai.me";
forceSSL = true;
kTLS = true;
locations."/".proxyPass = "http://127.0.0.1:6767";
};
prowlarr.enable = true;
nginx.virtualHosts."prowlarr.baduhai.me" = {
useACMEHost = "baduhai.me";
forceSSL = true;
kTLS = true;
locations."/".proxyPass = "http://127.0.0.1:9696";
};
deluge = {
enable = true;
web.enable = true;
group = "hosted";
openFirewall = true;
};
nginx.virtualHosts."deluge.baduhai.me" = {
useACMEHost = "baduhai.me";
forceSSL = true;
kTLS = true;
locations."/".proxyPass = "http://127.0.0.1:8112";
};
n8n.enable = true;
nginx.virtualHosts."n8n.baduhai.me" = {
useACMEHost = "baduhai.me";
forceSSL = true;
kTLS = true;
locations."/".proxyPass = "http://127.0.0.1:5678";
};
minecraft-server = { minecraft-server = {
enable = true; enable = true;
eula = true; eula = true;