containers/emerald: use correct shareurl format

navidrome always add /share at the end :(
This commit is contained in:
Cilly Leang 2026-03-18 00:07:52 +11:00
parent 4aaeefa97a
commit ccafbd8ae0
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
Port = 4533; Port = 4533;
Address = "[::]"; Address = "[::]";
BaseUrl = "https://${fqdn}/"; BaseUrl = "https://${fqdn}/";
ShareURL = shareFqdn; ShareURL = "https://${shareFqdn}";
EnableSharing = true; EnableSharing = true;
DataFolder = "/persist/navidrome"; DataFolder = "/persist/navidrome";
MusicFolder = "/persist/music"; MusicFolder = "/persist/music";

View file

@ -30,7 +30,7 @@
services.nginx.virtualHosts."${shareFqdn}" = { services.nginx.virtualHosts."${shareFqdn}" = {
useACMEHost = "lava.moe"; useACMEHost = "lava.moe";
forceSSL = true; forceSSL = true;
locations."/".proxyPass = "http://[${client}]:4533/share"; locations."/".proxyPass = "http://[${client}]:4533";
}; };
systemd.tmpfiles.rules = [ "d /persist/containers/${name} 755 root users" ]; systemd.tmpfiles.rules = [ "d /persist/containers/${name} 755 root users" ];