1
0
Fork 0

Fix Jellyfin install

This commit is contained in:
Avery 2025-02-14 22:19:44 +01:00
parent 6e3b3de077
commit 4784efffcd
Signed by: Avery
GPG key ID: B684FD451B692E04
2 changed files with 3 additions and 1 deletions

View file

@ -8,6 +8,7 @@
forgejo-http = 3000; forgejo-http = 3000;
inv-sig-helper = 12999; inv-sig-helper = 12999;
invidious-http = 3002; invidious-http = 3002;
jellyfin-http = 8096;
matrix-http = 8008; matrix-http = 8008;
matrix-https = 8448; matrix-https = 8448;
matrix-bridges-http = 8088; matrix-bridges-http = 8088;

View file

@ -11,7 +11,8 @@ in {
}; };
nginx.virtualHosts."jellyfin.rcia.dev" = { nginx.virtualHosts."jellyfin.rcia.dev" = {
locations."/" = { locations."/" = {
proxyPass = "http://127.0.0.1:${portDefinitions.jellyfin-http}"; proxyPass =
"http://127.0.0.1:${toString portDefinitions.jellyfin-http}";
}; };
extraConfig = nginxLocalServiceConfig; extraConfig = nginxLocalServiceConfig;
}; };