From 7f9e4f4b7c751ada3665e5e9b5dc561eb28d7d29 Mon Sep 17 00:00:00 2001 From: Mike Rosseel Date: Sat, 4 Nov 2017 11:50:12 +0100 Subject: [PATCH 1/2] change safesocks to 0 so we can connect to clearnet bitcoin nodes --- tor/src/main/resources/torrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tor/src/main/resources/torrc b/tor/src/main/resources/torrc index 76c4d47..0461403 100644 --- a/tor/src/main/resources/torrc +++ b/tor/src/main/resources/torrc @@ -4,5 +4,5 @@ DisableNetwork 1 AvoidDiskWrites 1 PidFile pid RunAsDaemon 1 -SafeSocks 1 +SafeSocks 0 SOCKSPort auto \ No newline at end of file From 51f0cd3dec1ebc5c6fe9997ba6373733fae4930a Mon Sep 17 00:00:00 2001 From: Mike Rosseel Date: Sat, 4 Nov 2017 15:25:20 +0100 Subject: [PATCH 2/2] Disable writing of statistics HiddenServiceStatistics information: Relays only. When this option is enabled, a Tor relay writes obfuscated statistics on its role as hidden-service directory introduction point, or rendezvous point to disk every 24 hours. If ExtraInfoStatistics is also enabled, these statistics are further published to the directory authorities. (Default: 1) --- tor/src/main/resources/torrc | 1 + 1 file changed, 1 insertion(+) diff --git a/tor/src/main/resources/torrc b/tor/src/main/resources/torrc index 0461403..9a23060 100644 --- a/tor/src/main/resources/torrc +++ b/tor/src/main/resources/torrc @@ -5,4 +5,5 @@ AvoidDiskWrites 1 PidFile pid RunAsDaemon 1 SafeSocks 0 +HiddenServiceStatistics 0 SOCKSPort auto \ No newline at end of file