feat(host/faunus-ater): expose music.tammena.me

This commit is contained in:
Malte Tammena 2024-03-07 15:08:14 +01:00
parent c2db9c2a67
commit f674f24bf4
2 changed files with 9 additions and 2 deletions

View file

@ -5,7 +5,7 @@
...
}: let
webdavPort = 4918;
navidromePort = 4533;
navidromePort = config.state.services.music.port;
in {
# User and group that owns all media-related files
users.users.media = {
@ -146,8 +146,10 @@ in {
enable = true;
settings = {
MusicFolder = "/data/dirty/music";
Port = navidromePort;
DefaultLanguage = "de";
Address = "0.0.0.0";
Port = navidromePort;
BaseUrl = "https://music.tammena.me";
};
};

View file

@ -72,5 +72,10 @@
port = 8333;
external = false;
};
music = {
host = "faunus-ater";
port = 4533;
external = true;
};
};
}