From 4c7f09d52d917763d3e0c75df74c9d196abb412e Mon Sep 17 00:00:00 2001 From: drholy Date: Sun, 25 Jan 2026 12:49:27 +0700 Subject: [PATCH] edit start-n8n socks ip address --- start-n8n.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-n8n.sh b/start-n8n.sh index e9ca87b..ccb1139 100644 --- a/start-n8n.sh +++ b/start-n8n.sh @@ -2,7 +2,7 @@ # Wait for SOCKS proxy to be ready echo "Waiting for SOCKS proxy..." -until nc -z socks 1080; do +until nc -z ${SOCKS_IP} 1080; do echo "SOCKS proxy not ready yet, waiting..." sleep 5 done