Created
March 23, 2022 08:31
-
-
Save mistificator/0119ec8f3ce5adaf25b4335fcd587574 to your computer and use it in GitHub Desktop.
Sample torrc configuration file for using with Tor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# torrc configuration file that allows to setup Tor-proxy on port 8080 through another proxy in LAN on port 3128 with obfs4 transport | |
# | |
# 1. On Windows install Tor as service | |
# tor -service install --options -f "c:\Users\user\AppData\Roaming\tor\torrc" | more | |
# | |
# 2. Check Tor is working (SOCKS port checking) | |
# netstat -aon | findstr ":9050" | |
# | |
# 3. Set proxy in browser to 127.0.0.1:8080 for both HTTP and HTTPS | |
# | |
# 4. Enjoy. | |
# | |
HTTPSProxy 192.168.1.200:3128 | |
ClientTransportPlugin obfs4 exec "C:/Users/user/Desktop/Tor Browser/Browser/TorBrowser/Tor/PluggableTransports/obfs4proxy.exe" | |
UpdateBridgesFromAuthority 1 | |
HTTPTunnelPort 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment