Compare commits

...

1 Commits

Author SHA1 Message Date
62ae52cca7
h: enable navidrome and add vhost 2023-12-04 07:38:00 -07:00

View File

@ -293,6 +293,14 @@ in
};
services = {
navidrome = {
enable = true;
settings = {
Address = "127.0.0.1";
Port = 4533;
MusicFolder = "/var/lib/music";
};
};
shiori = {
enable = true;
port = 8967;
@ -544,6 +552,19 @@ in
'';
};
"music.tapenet.org" = {
forceSSL = true;
enableACME = true;
locations = {
"/" = {
proxyPass = "http://${config.services.navidrome.settings.Address}:${toString config.services.navidrome.settings.Port}";
proxyWebsockets = true;
priority = 1000;
};
};
};
"git.tapenet.org" = {
forceSSL = true;
enableACME = true;