refactory syntax entrypoint-tor

This commit is contained in:
Jesús 2021-08-01 22:41:02 -05:00
parent ae37d5106f
commit a0c6b0c8e2
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -4,23 +4,21 @@ if [ "$ROUTE_TOR" = 1 ] || [ "$ROUTE_TOR" = 2 ]; then
cat > /etc/tor/torrc <<- EOF
Log notice stdout
SocksPort ${TOR_PORT:-9050} # Default: Bind to localhost:9050 for local connections.
MaxCircuitDirtiness ${MAX_CIRCUIT:-300}
CircuitBuildTimeout ${CIRCUIT_TIMEOUT:-300}
MaxCircuitDirtiness ${MAX_CIRCUIT:-2700}
CircuitBuildTimeout ${CIRCUIT_TIMEOUT:-2700}
ExcludeExitNodes {US}
StrictNodes 1
EOF
tor -f /etc/tor/torrc --runasdaemon 1
# check loop health tor
while :; do
if pgrep tor > /dev/null; then
checkurl=$(curl --socks5 "localhost:${TOR_PORT:-9050}" -o /dev/null -s -w "%{http_code}\n" "${URL_CHECK:-https://www.youtube.com/results?search_query=rms}")
if [ "$checkurl" = '502' ] || [ "$checkurl" = '302' ]; then
pkill tor && tor -f /etc/tor/torrc --runasdaemon 1
fi
if pgrep tor > /dev/null 2>&1; then
checkurl=$(curl --socks5 "localhost:${TOR_PORT:-9050}" -o /dev/null 2>&1 -s -w "%{http_code}\n" "${URL_CHECK:-https://www.youtube.com/results?search_query=rms}")
case ${checkurl} in
302|502) pkill tor > /dev/null 2>&1 && tor -f /etc/tor/torrc --runasdaemon 1 ;;
esac
else
tor -f /etc/tor/torrc --runasdaemon 1
fi
sleep 5
sleep 15
done
fi