From eb50e78129b0a0e8a4062007d7b53e8d7651165d Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 23 May 2024 16:26:59 -0400 Subject: [PATCH] Scratch relay achieved adding torrc documentation. --- docker/tor-relay/torrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/tor-relay/torrc b/docker/tor-relay/torrc index 124ac81..1975511 100644 --- a/docker/tor-relay/torrc +++ b/docker/tor-relay/torrc @@ -1,8 +1,8 @@ # Define this as a relay-only node -SocksPort 0 # Disables the SOCKS port since this is a relay, not a client proxy +SocksPort 0 # 0 Disables the SOCKS port since this is a relay, not a client proxy choose any port. ORPort 9001 # The port on which Tor will accept connections from other Tor nodes DirPort 9030 # The port on which Tor will serve directory information to other Tor nodes -ExitRelay 0 # Disables exit relay functionality to prevent traffic from exiting to the internet through this relay +ExitRelay 0 # 0 Disables exit relay functionality to prevent traffic from exiting to the internet through this relay # Bandwidth limits RelayBandwidthRate 100 KB # Maximum average bandwidth rate allowed for traffic (100 KB/s)