From 9d5ffbe26ebb1d282e2f084c5df80b134a4d0693 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 28 Sep 2021 20:11:25 -0700 Subject: [PATCH] fix(docker): disabling circuit relays by default --- production/docker/start-production.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/production/docker/start-production.sh b/production/docker/start-production.sh index 02a8402..9a77c2e 100755 --- a/production/docker/start-production.sh +++ b/production/docker/start-production.sh @@ -11,10 +11,10 @@ export MNEMONIC="olive two muscle bottom coral ancient wait legend bronze useful export COORD_NAME=ipfs-service-provider-generic # Allow this node to function as a circuit relay. It must not be behind a firewall. -export ENABLE_CIRCUIT_RELAY=true +#export ENABLE_CIRCUIT_RELAY=true # For browsers to use your circuit realy, you must set up a domain, SSL certificate, # and you must forward that subdomain to the IPFS_WS_PORT. -export CR_DOMAIN=subdomain.yourdomain.com +#export CR_DOMAIN=subdomain.yourdomain.com # Debug level. 0 = minimal info. 2 = max info. export DEBUG_LEVEL=1