From a7f0246dac1b3a2c8a9f2bda8d1cfa42b4877073 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 15 Feb 2026 16:43:45 +0100 Subject: [PATCH] fix: use LAN address for SOCKS5 proxy Container can't reach 127.0.0.1 on the host. Use the host's LAN address 192.168.129.11 so containerized plugins can reach the SOCKS5 forwarder. Co-Authored-By: Claude Opus 4.6 --- src/derp/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/derp/http.py b/src/derp/http.py index 315e53f..e8fa8fa 100644 --- a/src/derp/http.py +++ b/src/derp/http.py @@ -9,7 +9,7 @@ import socks from socks import SOCKS5 from sockshandler import SocksiPyConnectionS, SocksiPyHandler -_PROXY_ADDR = "127.0.0.1" +_PROXY_ADDR = "192.168.129.11" _PROXY_PORT = 1080