From 129e7edb75503f9f5a37b2ea10c90ffa3b93e75d Mon Sep 17 00:00:00 2001 From: SysAdmin Date: Fri, 3 Oct 2025 17:44:13 +0100 Subject: [PATCH] Enable Tor routing for TeleBot - Privacy Enhancement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Issue TeleBot was bypassing Tor gateway despite infrastructure being available. ## Root Cause Deployment configuration explicitly disabled Tor: - LittleShop__UseTor=false (line 118) ## Fix Changed deployment configuration to enable Tor routing: - LittleShop__UseTor=true ## Impact ✅ All Telegram API calls now route through Tor network ✅ Bot's real IP hidden from Telegram servers ✅ Enhanced privacy protection ⚠️ Slight latency increase due to Tor overhead ## Verification Required Monitor tor-gateway logs after deployment to confirm traffic routing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30a9c18..d669c4b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -115,7 +115,7 @@ deploy:vps: --network littleshop-network \ -e ASPNETCORE_URLS=http://+:5010 \ -e LittleShop__ApiUrl=http://littleshop-admin:8080 \ - -e LittleShop__UseTor=false \ + -e LittleShop__UseTor=true \ -e Privacy__TorSocksHost=tor-gateway \ -e Privacy__TorSocksPort=9050 \ localhost:5000/telebot:latest