blob: 205b47fecb0ea13c31e9d43c7b043358b73c1af3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ config, ... }:
let
internal-ip = "192.168.111.11";
port = 4533;
in
{
services.navidrome.enable = true;
services.navidrome.settings = {
MusicFolder = "/media/cryptX/music/kinder";
Address = "0.0.0.0";
};
systemd.services.navidrome.after = [ "media-cryptX.mount" ];
state = [ "/var/lib/navidrome" ];
# networking.firewall.allowedTCPPorts = [ 4040 ];
# state = [ config.services.airsonic.home ];
services.nginx.virtualHosts."navidrome" = {
serverAliases = [
"navidrome.lan"
"music" "music.lan"
"musik" "musik.lan"
"music.omo.r"
"music.makefu.r" "music.makefu"
];
locations."/".proxyPass = "http://localhost:${toString port}";
locations."/".proxyWebsockets = true;
};
networking.firewall.allowedTCPPorts = [ port ];
}
|