zhaow-de / rotating-tor-http-proxy

A multi-arch image provides one HTTP proxy endpoint with many concurrent tunnels to the Tor network.
https://hub.docker.com/r/zhaowde/rotating-tor-http-proxy
MIT License
129 stars 36 forks source link

Why 40 as a limit? #8

Open LorhanSohaky opened 6 months ago

LorhanSohaky commented 6 months ago

I would like to put 100 or more

geeknik commented 6 months ago

I believe you can open up the start.sh file and look for these lines:

if ((TOR_INSTANCES < 1 || TOR_INSTANCES > 40)); then
   log "fatal" "Environment variable TOR_INSTANCES has to be within the range of 1...40"
   exit 1
fi

change TOR_INSTANCES > 40 to 100 or whatever your magic # is.