From c3e147df6b6f51e40d9152e95189f440737dbeec Mon Sep 17 00:00:00 2001 From: Vasco Santos Date: Wed, 24 Mar 2021 09:35:17 +0100 Subject: [PATCH] chore: delegates config md properties for client (#903) --- doc/CONFIGURATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/CONFIGURATION.md b/doc/CONFIGURATION.md index ce09f1e0..89c30b3d 100644 --- a/doc/CONFIGURATION.md +++ b/doc/CONFIGURATION.md @@ -400,13 +400,13 @@ const PeerId = require('peer-id') const peerId = await PeerId.create() const delegatedPeerRouting = new DelegatedPeerRouter(ipfsHttpClient({ - host: 'node0.delegate.ipfs.io' // In production you should setup your own delegates + host: 'node0.delegate.ipfs.io', // In production you should setup your own delegates protocol: 'https', port: 443 })) const delegatedContentRouting = new DelegatedContentRouter(peerId, ipfsHttpClient({ - host: 'node0.delegate.ipfs.io' // In production you should setup your own delegates + host: 'node0.delegate.ipfs.io', // In production you should setup your own delegates protocol: 'https', port: 443 }))