containers/emerald: use correct shareurl format
navidrome always add /share at the end :(
This commit is contained in:
parent
4aaeefa97a
commit
ccafbd8ae0
2 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -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" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue