Add instructions for hooking up Tor Browser to arti on Windows

This commit is contained in:
Steven Murdoch 2022-03-04 22:56:55 +00:00
parent 8231e70288
commit b041bebe9d
1 changed files with 12 additions and 2 deletions

View File

@ -111,14 +111,24 @@ configuration parameters:
This will ensure that arti sets its SOCKS port on 9150. Now we need to launch
Tor Browser and instruct it to use that SOCKS port.
On Linux:
### Linux
$ TOR_SKIP_LAUNCH=1 TOR_SOCKS_PORT=9150 ./start-tor-browser.desktop
On OSX:
### OS X
$ TOR_SKIP_LAUNCH=1 TOR_SOCKS_PORT=9150 /path/to/Tor\ Browser/Contents/MacOS/firefox
### Windows
Create a shortcut with the `Target` set to:
C:\Windows\System32\cmd.exe /c "SET TOR_SKIP_LAUNCH=1&& SET TOR_SOCKS_PORT=9150&& START /D ^"C:\path\to\Tor Browser\Browser^" firefox.exe"
and `Start in` set to:
"C:\path\to\Tor Browser\Browser"
(You may need to adjust the actual path to wherever you have put your Tor
Browser.)