From 439959c9775c2f59cfabda6e84fe7984bee5422b Mon Sep 17 00:00:00 2001 From: silverpill Date: Fri, 6 May 2022 23:09:38 +0000 Subject: [PATCH] Update IPFS guide --- docs/ipfs.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ipfs.md b/docs/ipfs.md index b87c0d0..5733851 100644 --- a/docs/ipfs.md +++ b/docs/ipfs.md @@ -2,7 +2,7 @@ This guide explains how to run IPFS node in resource-constrained environment (such as cheap VPS or single-board computer). -The recommended IPFS implementation is [go-ipfs](https://github.com/ipfs/go-ipfs), version 0.11 or higher. Normally go-ipfs requires at least 2 GB RAM, but after tweaking it can run on a machine with only 512 MB. +The recommended IPFS implementation is [go-ipfs](https://github.com/ipfs/go-ipfs), version 0.12 or higher. Normally go-ipfs requires at least 2 GB RAM, but after tweaking it can run on a machine with only 512 MB. ## Configuration profiles @@ -18,6 +18,7 @@ Documentation on configuration profiles: https://github.com/ipfs/go-ipfs/blob/ma ## Configuration options +- `Datastore.StorageMax`. Recommended value is `1G`. - `Gateway.NoFetch`. Configures gateway to not fetch files from the network. Recommended value is `true`. - `RelayService.Enabled`. Enables providing p2p relay service to other peers on the network. Recommended value is `false`. - `Routing.Type`. Should be set to `dht` otherwise the node will not respond to requests from other peers.