Reverse proxy for hosting applications on tor network as hidden services.
1.6K
HiddenServiceReverseProxy is a Docker-based reverse proxy that helps you host applications on the Tor network. It makes it easy to expose web applications through the Tor network without manually setting up Tor's hidden service configuration.
.onion address for your service.docker run -d \
-e APP_IP_DOMAIN="192.168.1.10" \ # IP of the application
-e APP_PORT="80" \ # Port of the application
-v tor_data:/var/lib/tor \ # Mount volume to persist Tor data
--name hiddenservicereverseproxy \ # Container name
--restart unless-stopped \ # Restart policy: restart unless manually stopped
bariskisir/hiddenservicereverseproxy
services:
web:
image: nginx
networks:
- tor_network
restart: unless-stopped
hiddenservicereverseproxy:
image: bariskisir/hiddenservicereverseproxy
environment:
APP_IP_DOMAIN: web
APP_PORT: 80
networks:
- tor_network
volumes:
- tor_data:/var/lib/tor # Persist Tor data using a Docker volume
restart: unless-stopped
networks:
tor_network:
driver: bridge
volumes:
tor_data: # Volume to persist Tor data
driver: local
docker logs hiddenservicereverseproxy
Brave Browser Alt+Shift+N for tor mode.
Content type
Image
Digest
sha256:ad608b799…
Size
10 MB
Last updated
about 1 year ago
docker pull bariskisir/hiddenservicereverseproxy