Docker container…
So today last.fm stopped working for Russia: ❯ curl -I https://www.last.fm/ HTTP/2 403 So here's the problem: now my dockerized Navidrome server won't scrobble tracks to last.fm, and since there are no proxy options in Navidrome, we have to route all network traffic from the container to a proxy server. Sometimes I feel like I'm between a rock and a hard place, because the restrictions are coming from both ways... But something good always comes out of every bad situation, and from this situation I'll learn a little more about Docker and proxying. Anyways. What's my goal: make Navidrome scrobble tracks to last.fm again by routing its traffic though my host machine's Xray proxy. What's my steps: Install and configure xray on my server Update docker compose, add proxy variables So first I need to update my Xray configuration. Basically I need to change Xray to listen on all network interfaces (0.0.0.0) so the Docker container can reach it: "inbounds": [ { "listen"…