feat(APPA): add jellyfin
This commit is contained in:
parent
5193b21ffd
commit
aac276e154
4 changed files with 26 additions and 0 deletions
|
|
@ -58,6 +58,10 @@
|
||||||
domain = "paperless.dryb.org";
|
domain = "paperless.dryb.org";
|
||||||
answer = "192.168.2.40";
|
answer = "192.168.2.40";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
domain = "jellyfin.dryb.org";
|
||||||
|
answer = "192.168.2.40";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
dhcp = {
|
dhcp = {
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
./ddclient.nix
|
./ddclient.nix
|
||||||
./gitea.nix
|
./gitea.nix
|
||||||
./homepage-dashboard.nix
|
./homepage-dashboard.nix
|
||||||
|
./jellyfin.nix
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./paperless.nix
|
./paperless.nix
|
||||||
|
|
|
||||||
14
hosts/APPA/services/jellyfin.nix
Normal file
14
hosts/APPA/services/jellyfin.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
# HTTP Traffic: 8096
|
||||||
|
# HTTPS Traffic: 8920
|
||||||
|
# Service Discovery: 1900
|
||||||
|
# Client Discovery: 7359 UDP
|
||||||
|
|
||||||
|
users.groups."${config.services.jellyfin.group}".members = [ "nextcloud" ];
|
||||||
|
|
||||||
|
services.jellyfin = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -50,6 +50,13 @@
|
||||||
proxyPass = "http://127.0.0.1:8006";
|
proxyPass = "http://127.0.0.1:8006";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
virtualHosts."jellyfin.dryb.org" = {
|
||||||
|
useACMEHost = "dryb.org";
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:8096";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue