From 9b53647c8d972cf40d8c54226cf5fec30bc2c302 Mon Sep 17 00:00:00 2001 From: Henrique Ferreiro Date: Tue, 13 Nov 2018 12:49:01 +0100 Subject: [PATCH] Revert "Set default configuration to prevent spawning many proxy processes." Setting `MaxClients` to 1 serializes all connections breaking YouTube and possibly other applications. This reverts commit feb6e92d593e8b073c33cb2719b0f4c97b8626b0. --- etc/tinyproxy.conf.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/tinyproxy.conf.in b/etc/tinyproxy.conf.in index 73b2836..955cb7d 100644 --- a/etc/tinyproxy.conf.in +++ b/etc/tinyproxy.conf.in @@ -188,7 +188,7 @@ LogLevel Info # be created. In other words, only MaxClients number of clients can be # connected at the same time. # -MaxClients 1 +MaxClients 100 # # MinSpareServers/MaxSpareServers: These settings set the upper and @@ -198,13 +198,13 @@ MaxClients 1 # server processes will be spawned. If the number of servers exceeds # MaxSpareServers then the extras will be killed off. # -#MinSpareServers 5 -#MaxSpareServers 20 +MinSpareServers 5 +MaxSpareServers 20 # # StartServers: The number of servers to start initially. # -StartServers 1 +StartServers 10 # # MaxRequestsPerChild: The number of connections a thread will handle