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 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-15 16:43:45 +01:00
parent 87b43e211a
commit a7f0246dac

View File

@@ -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