From b7d3602dcd8654834a9dc6ae6f1066aa906d8cfb Mon Sep 17 00:00:00 2001 From: Maksim Eltyshev Date: Thu, 19 Mar 2026 12:28:09 +0100 Subject: [PATCH] fix(proxy): Limit Squid file descriptors to prevent excessive memory allocation Closes #1590 --- server/start.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/server/start.sh b/server/start.sh index eeb337f9..84bc374c 100755 --- a/server/start.sh +++ b/server/start.sh @@ -42,6 +42,7 @@ start_outgoing_proxy_if_needed() { # Basic settings echo "pid_filename $SQUID_PID" >> "$SQUID_CONF" echo "http_port 127.0.0.1:3128" >> "$SQUID_CONF" + echo "max_filedescriptors 4096" >> "$SQUID_CONF" echo "acl all src all" >> "$SQUID_CONF" # Disable caching