Unable to download torrents when prowlarr is on localhost #1062
-
|
I get the error |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The download fetch blocks loopback on purpose: the Two ways forward: 1. Works on current Bindery. Point Bindery at Prowlarr by a non-loopback address so the links it returns land in RFC1918, which is allowed. Use the host LAN IP, the Docker bridge gateway ( 2. For that host network, loopback only case. I just added an opt-in: set |
Beta Was this translation helpful? Give feedback.
The download fetch blocks loopback on purpose: the
.torrent/.nzbURL comes from the indexer's response, not from your config, so a compromised indexer could otherwise aim it at a service bound to Bindery's own127.0.0.1. Your Prowlarr base URL is fine on loopback (and search already reaches it that way), but the download link it hands back is what gets rejected.Two ways forward:
1. Works on current Bindery. Point Bindery at Prowlarr by a non-loopback address so the links it returns land in RFC1918, which is allowed. Use the host LAN IP, the Docker bridge gateway (
172.17.0.1/host.docker.internal), or the compose service name (e.g.http://prowlarr:9696). This only falls short if Bindery …