Added some services
This commit is contained in:
parent
ed4db17f0d
commit
332f8d9238
1 changed files with 75 additions and 13 deletions
|
|
@ -98,6 +98,68 @@
|
|||
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 = {
|
||||
enable = true;
|
||||
eula = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue