Open airdogvan opened 4 years ago
I want to know too!
I have the same question
You can check the Dockerfile that the controlport is 9051. So just map it outside to use.
sudo docker run -it -p 8118:8118 -p 9050:9050 -p 9051:9051 -e PASSWORD=yourpass dperson/torproxy
from stem import Signal
from stem.control import Controller
with Controller.from_port(port=9051) as controller:
controller.authenticate(password="yourpass")
controller.signal(Signal.NEWNYM)
Yes. See comment in thread: https://github.com/dperson/torproxy/issues/80
Hy guys My question is 9051 port is not open when I run nmap command ` image: dperson/torproxy ports:
I'm running with the simple docker run -it -p 8118:8118 -p 9050:9050 -d dperson/torproxy command and using it at port 9050 for browser proxy. But I noticed each time I start it it seems to run the same circuit resulting in the same IP (exit node).
Is there a way to tell it to generate new one?
Thanks