diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/entrypoint-tor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/entrypoint-tor.sh b/core/entrypoint-tor.sh index 17f526f..0bfabfe 100644 --- a/core/entrypoint-tor.sh +++ b/core/entrypoint-tor.sh @@ -14,7 +14,7 @@ EOF 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 ;; + 302|502|500) pkill tor > /dev/null 2>&1 && tor -f /etc/tor/torrc --runasdaemon 1 ;; esac else tor -f /etc/tor/torrc --runasdaemon 1 |