Hi fellas,
I found an interesting image on Docker Hub, dedicated to TOR hidden service deployement. The README is self explainatory and worth a try. :wink:
Install nginx or any service you need to hide:
sudo pacman -S nginx
sudo systemctl enable nginx
sudo systemctl start nginx
Install tor:
sudo pacman -S tor torsocks
Modify /etc/tor/torrc:
HiddenServiceDir /var/lib/tor/hidden_service/
HiddenServicePort 80 127.0.0.1:80
optional: one more service
HiddenServicePort 22 127.0.0.1:22
Start tor service automatically:
sudo systemctl enable tor
sudo systemctl start tor
Don’t forget to backup /var/lib/tor/hidden_service/
Take your chance to create the new silk road :stuck_out_tongue:
Best,
t0r