Rota is a modern, full-stack proxy rotation platform that combines enterprise-grade proxy management with a beautiful, real-time web dashboard. Built with performance and scalability in mind, Rota handles thousands of requests per second while providing comprehensive monitoring, analytics, and control through an intuitive interface.
Whether you're conducting web scraping operations, performing security research, load testing, or need reliable proxy management at scale, Rota delivers a complete solution with:
- High-Performance Core: Lightning-fast Go-based proxy server with intelligent rotation strategies
- Real-Time Dashboard: Modern Next.js web interface with live metrics and monitoring
- Time-Series Analytics: TimescaleDB-powered storage for historical analysis and insights
- Production-Ready: Docker-based deployment with health checks, graceful shutdown, and monitoring
- π High Performance: Handle thousands of concurrent requests with minimal latency
- π Smart Rotation: Multiple rotation strategies (random, round-robin, least connections, time-based)
- π€ Automatic Management: Real-time proxy pool monitoring with automatic unhealthy proxy removal
- π Multi-Protocol: Full support for HTTP, HTTPS, SOCKS4, SOCKS4A, and SOCKS5
- β Health Checking: Built-in proxy validation to maintain a healthy pool
- π Authentication: Basic auth support for proxy server
- β‘ Rate Limiting: Configurable rate limiting to prevent abuse
- π Proxy Chaining: Compatible with upstream proxies (Burp Suite, OWASP ZAP, etc.)
- β±οΈ Configurable Timeouts: Fine-grained control over request timeouts and retries
- π Redirect Support: Optional HTTP redirect following
- π Real-Time Metrics: Live statistics, charts, and system monitoring
- π Proxy Management: Add, edit, delete, and test proxies through the UI
- π Live Logs: WebSocket-based real-time log streaming
- π» System Monitoring: CPU, memory, disk, and runtime metrics
- βοΈ Configuration: Manage settings through the web interface
- π¨ Modern UI: Beautiful, responsive design with dark mode support
- π± Mobile-Friendly: Fully responsive across all devices
- π Time-Series Storage: TimescaleDB for efficient historical data storage
- π Request History: Track all proxy requests with detailed metadata
- π Performance Analytics: Analyze proxy performance over time
- π― Usage Insights: Understand traffic patterns and proxy utilization
- π³ Docker-Native: Production-ready containerized deployment
- π§ Easy Configuration: Environment-based configuration
- π₯ Health Checks: Built-in health endpoints for monitoring
- π Graceful Shutdown: Clean shutdown with connection draining
- π Observability: Structured JSON logging and metrics endpoints
The fastest way to get Rota up and running:
# Clone the repository
git clone https://github.com/alpkeskin/rota.git
cd rota
# Start all services (core, dashboard, database)
docker compose up -d
# Check service status
docker compose psAccess the services:
- π Dashboard: http://localhost:3000
- π§ API: http://localhost:8001
- π Proxy: http://localhost:8000
- ποΈ Database: localhost:5432
Default credentials for dashboard:
- Username:
admin - Password:
admin
Pull and run the core service:
# Pull from GitHub Container Registry
docker pull ghcr.io/alpkeskin/rota:latest
# Run with basic configuration
docker run -d \
--name rota-core \
-p 8000:8000 \
-p 8001:8001 \
-e DB_HOST=your-db-host \
-e DB_USER=rota \
-e DB_PASSWORD=your-password \
ghcr.io/alpkeskin/rota:latest# Prerequisites: Go 1.25.3+, Node.js 20+, PostgreSQL 16+ with TimescaleDB
# Clone the repository
git clone https://github.com/alpkeskin/rota.git
cd rota
# Start Core
cd core
cp .env .env.local # Configure your environment
make install
make dev
# Start Dashboard (in new terminal)
cd dashboard
npm install
cp .env.local .env.local # Configure API URL
npm run dev# Route traffic through Rota proxy
curl -x http://localhost:8000 https://api.ipify.org?format=json
# Using environment variables
export HTTP_PROXY=http://localhost:8000
export HTTPS_PROXY=http://localhost:8000
curl https://api.ipify.org?format=jsonRota provides interactive API documentation through Swagger UI. Once the core service is running, you can access it at:
http://localhost:8001/docs
The Swagger interface allows you to:
- π Browse all available API endpoints
- π§ͺ Test API requests directly from your browser
- π View request/response schemas
- π Explore authentication requirements
Quick Access:
- Swagger UI: http://localhost:8001/docs
- OpenAPI Spec: http://localhost:8001/docs/swagger.json
Rota is built as a modern monorepo with three main components:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Rota Platform β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β Dashboard βββββΆβ Core (API) βββββΆβ TimescaleDB β β
β β Next.js β β Go β β PostgreSQL β β
β β Port 3000 β β Port 8001 β β Port 5432 β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β β β
β β βΌ β
β β ββββββββββββββββ β
β βββββββββββββΆβ Proxy Server β β
β β Go β β
β β Port 8000 β β
β ββββββββββββββββ β
β β β
ββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββ
βΌ
ββββββββββββββββββββ
β Proxy Pool β
β (External IPs) β
ββββββββββββββββββββ
- Random: Select a random proxy for each request
- Round Robin: Distribute requests evenly across all proxies
- Least Connections: Route to the proxy with fewest active connections
- Time-Based: Rotate proxies at fixed intervals
# Production configuration
docker compose -f docker-compose.yml up -d
# Enable auto-restart
docker compose up -d --restart=unless-stoppedContributions are welcome! We appreciate meaningful contributions that add value to the project.
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Make your changes
- Commit your changes:
git commit -m 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
- Write clear, descriptive commit messages
- Add tests for new features
- Update documentation as needed
- Follow existing code style and conventions
- Ensure all tests pass before submitting PR
- One feature/fix per pull request
Note: Pull requests that do not contribute significant improvements or fixes will not be accepted.
# 1. Create feature branch
git checkout -b feature/my-feature
# 2. Make changes and test
make test
# 3. Commit changes
git add .
git commit -m "feat: add my feature"
# 4. Push and create PR
git push origin feature/my-featureThis project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Built with β€οΈ by Alp Keskin
β Star this repository if you find it useful!

