Browse Source

Update local Tor config

master
Kristaps Kaupe 4 years ago
parent
commit
2692f08d3b
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}" pushd "${tor_version}"
if tor_build; then if tor_build; then
$make install $make install
# Create blank tor config, it will default to running socks5 proxy echo "# Default JoinMarket Tor configuration
# at 127.0.0.1:9050 and should be enough for us. Log warn stderr
> "${jm_root}/etc/tor/torrc" SOCKSPort 9050 IsolateDestAddr IsolateDestPort
ControlPort 9051
CookieAuthentication 1
" > "${jm_root}/etc/tor/torrc"
else else
return 1 return 1
fi fi

Loading…
Cancel
Save