nixos-config/configurations/camelot/jellyfin.nix

20 lines
368 B
Nix
Raw Normal View History

2023-11-24 18:45:27 +01:00
{ extraInfo, ... }:
2023-11-23 21:55:37 +01:00
{
services.jellyfin.enable = true;
2023-11-24 18:45:27 +01:00
services.nginx.virtualHosts.${extraInfo.jellyfinURI} = {
enableACME = true;
forceSSL = true;
locations = {
"/" = {
proxyPass = "http://localhost:8096";
};
"/socket" = {
proxyPass = "http://localhost:8096";
proxyWebsockets = true;
};
};
};
2023-11-23 21:55:37 +01:00
}