replace jellyfin with navidrome
This commit is contained in:
parent
21d60bd185
commit
79ff2ec2a7
1 changed files with 19 additions and 4 deletions
|
|
@ -280,9 +280,16 @@ let secrets = import ../secrets.nix; in
|
||||||
proxyPass = "http://127.0.0.1:9091/transmission/rpc";
|
proxyPass = "http://127.0.0.1:9091/transmission/rpc";
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
};
|
};
|
||||||
locations."/jellyfin/" = {
|
#locations."/jellyfin/" = {
|
||||||
#basicAuth = userlist;
|
##basicAuth = userlist;
|
||||||
proxyPass = "http://127.0.0.1:8096/jellyfin/";
|
#proxyPass = "http://127.0.0.1:8096/jellyfin/";
|
||||||
|
#proxyWebsockets = true;
|
||||||
|
#extraConfig = ''
|
||||||
|
#proxy_buffering off;
|
||||||
|
#'';
|
||||||
|
#};
|
||||||
|
locations."/navidrome" = {
|
||||||
|
proxyPass = "http://127.0.0.1:4533/navidrome";
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
|
|
@ -332,7 +339,15 @@ let secrets = import ../secrets.nix; in
|
||||||
plantumlLimitSize = 40000;
|
plantumlLimitSize = 40000;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.jellyfin.enable = true;
|
#services.jellyfin.enable = true;
|
||||||
|
|
||||||
|
services.navidrome = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
MusicFolder = "/schijf/music/downloads";
|
||||||
|
BaseUrl = "/navidrome";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
services.forgejo = {
|
services.forgejo = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue