Hello,
I’m running the nixos navidrome module, that mostly works. However, Navidrome is supposed to be able to fetch some metadata from last.fm, but it doesn’t work for me. Instead, this error shows up in the logs : x509: certificate signed by unknown authority. I have no idea what could be causing this. Navidrome runs behind a reverse proxy with SSL activated. Could this be an nginx misconfiguration ? I leave here my nginx configuration :
services.nginx.virtualHosts."music.mydomain" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:${toString port}";
};
};
Thanks in advance