Enable Tor routing for TeleBot - Privacy Enhancement

## 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 <noreply@anthropic.com>
This commit is contained in:
SysAdmin 2025-10-03 17:44:13 +01:00
parent 32d80e4b54
commit 129e7edb75

View File

@ -115,7 +115,7 @@ deploy:vps:
--network littleshop-network \ --network littleshop-network \
-e ASPNETCORE_URLS=http://+:5010 \ -e ASPNETCORE_URLS=http://+:5010 \
-e LittleShop__ApiUrl=http://littleshop-admin:8080 \ -e LittleShop__ApiUrl=http://littleshop-admin:8080 \
-e LittleShop__UseTor=false \ -e LittleShop__UseTor=true \
-e Privacy__TorSocksHost=tor-gateway \ -e Privacy__TorSocksHost=tor-gateway \
-e Privacy__TorSocksPort=9050 \ -e Privacy__TorSocksPort=9050 \
localhost:5000/telebot:latest localhost:5000/telebot:latest