Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1235: Update local Tor config

2692f08d3b Update local Tor config (Kristaps Kaupe)

Pull request description:

  * Change loglevel to "warn" to have less verbose output (it still outputs some "notice" level messages for me but less than without this).
  * Add [stream isolation](https://github.com/JoinMarket-Org/joinmarket-clientserver/issues/583).
  ```
  IsolateDestPort Don’t share circuits with streams targeting a different destination port.

  IsolateDestAddr Don’t share circuits with streams targeting a different destination address.
  ```
  * Cookie authentication.

Top commit has no ACKs.

Tree-SHA512: d006e541d250418656b7933ee2537b16897b449ae9418f3b7f2c1521bd964048d7ef62ed5cc3098c4d0f4aea4eb0af680c9e23ed9d18cb310c1bd5acfefdf58c
master
Kristaps Kaupe 4 years ago
parent
commit
41e89cdaf3
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 9
      install.sh

9
install.sh

@ -385,9 +385,12 @@ tor_install ()
pushd "${tor_version}"
if tor_build; then
$make install
# Create blank tor config, it will default to running socks5 proxy
# at 127.0.0.1:9050 and should be enough for us.
> "${jm_root}/etc/tor/torrc"
echo "# Default JoinMarket Tor configuration
Log warn stderr
SOCKSPort 9050 IsolateDestAddr IsolateDestPort
ControlPort 9051
CookieAuthentication 1
" > "${jm_root}/etc/tor/torrc"
else
return 1
fi

Loading…
Cancel
Save