From 89a254cd79c0eb524ce6dd3b7a67cc8879bad5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 28 Jul 2021 22:25:46 -0500 Subject: separate TOR configuration --- core/entrypoint-tor.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 core/entrypoint-tor.sh (limited to 'core/entrypoint-tor.sh') diff --git a/core/entrypoint-tor.sh b/core/entrypoint-tor.sh new file mode 100644 index 0000000..7c1e42f --- /dev/null +++ b/core/entrypoint-tor.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env sh + +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} +ExcludeExitNodes {US} +StrictNodes 1 +EOF + tor -f /etc/tor/torrc --runasdaemon 1 + + # check loop health tor + while :; do + 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 + sleep 5 + done +fi -- cgit v1.2.3