Skip to content

Commit 25f787e

Browse files
committed
Rename server infrastructure page to ipfs cluster
1 parent e806ea6 commit 25f787e

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

docs/.vuepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ module.exports = {
7777
'install/ipfs-companion',
7878
'install/command-line',
7979
['install/ipfs-updater', 'Updater'],
80-
'install/server-infrastructure',
80+
'install/ipfs-cluster',
8181
'install/recent-releases'
8282
]
8383
},

docs/.vuepress/redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,4 @@
5858
/reference/api/http/ /reference/http/api
5959
/reference/go/overview/ /reference/go/api
6060
/reference/js/overview/ /reference/js/api
61+
/install/server-infrastructure /install/ipfs-cluster

docs/concepts/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Filecoin and IPFS are two separate, complementary protocols, both created by Pro
4242

4343
In short: IPFS addresses and moves content, while Filecoin is an incentive layer to persist data.
4444

45-
These components are separable - you can use one without the other, and IPFS already supports more self-organized or altruistic forms of data persistence via tools like [IPFS Cluster](https://cluster.ipfs.io/). Compatibility between IPFS and Filecoin is intended to be as seamless as possible, but we expect it to evolve. You can view the [draft spec for IPFS-Filecoin Interoperability](https://github.com/filecoin-project/specs/issues/143) and [ideas for future improvements](https://github.com/filecoin-project/specs/issues/144) to learn more.
45+
These components are separable - you can use one without the other, and IPFS already supports more self-organized or altruistic forms of data persistence via tools like [IPFS Cluster](https://ipfscluster.io/). Compatibility between IPFS and Filecoin is intended to be as seamless as possible, but we expect it to evolve. You can view the [draft spec for IPFS-Filecoin Interoperability](https://github.com/filecoin-project/specs/issues/143) and [ideas for future improvements](https://github.com/filecoin-project/specs/issues/144) to learn more.
4646

4747
## IPFS and Protocol Labs
4848

docs/concepts/usage-ideas-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ There is an existing [IPFS devgrant](https://github.com/ipfs/devgrants) to host
8080

8181
### Help host important data
8282

83-
Thanks to recent improvements with IPFS Cluster, you can call for help to store your data without having to trust other nodes won't alter the data. With [collaborative mode](https://cluster.ipfs.io/documentation/collaborative), you can [replicate Pacman packages or COVID-19-related papers](https://collab.ipfscluster.io/) without needing to know the intricacies of IPFS.
83+
Thanks to recent improvements with IPFS Cluster, you can call for help to store your data without having to trust other nodes won't alter the data. With [collaborative mode](https://ipfscluster.io/documentation/collaborative), you can [replicate Pacman packages or COVID-19-related papers](https://collab.ipfscluster.io/) without needing to know the intricacies of IPFS.
8484

8585
### Video live-streaming
8686

docs/how-to/best-practices-for-nft-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,12 @@ Here's a quick recap of our recommendations:
170170
[docs-mint-nfts]: /how-to/mint-nfts-with-ipfs
171171
[docs-minty-how-ipfs-helps]: /how-to/mint-nfts-with-ipfs/#how-ipfs-helps
172172
[docs-persistence]: /concepts/persistence/
173-
[docs-server-infra]: /install/server-infrastructure/
173+
[docs-server-infra]: /install/ipfs-cluster/
174174
[docs-gateway]: /concepts/ipfs-gateway/
175175

176176
[docs-multibase]: https://github.com/multiformats/multibase
177177

178-
[ipfs-cluster]: https://cluster.ipfs.io
178+
[ipfs-cluster]: https://ipfscluster.io/
179179

180180
[protoschool-cid]: https://proto.school/content-addressing
181181
[eip-721]: https://eips.ethereum.org/EIPS/eip-721

docs/how-to/mint-nfts-with-ipfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,5 +561,5 @@ Thanks for following along! We can't wait to see what you'll build.
561561
[nft-bible]: https://opensea.io/blog/guides/non-fungible-tokens
562562
563563
[docs-cid]: ../../concepts/content-addressing/
564-
[docs-server-infra]: ../../install/server-infrastructure
564+
[docs-server-infra]: ../../install/ipfs-cluster
565565

docs/how-to/websites-on-ipfs/single-page-website.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ However, if you want your IPFS data to remain accessible when your local IPFS no
208208

209209
### Collaborative clusters
210210

211-
IPFS collaborative clusters are groups of IPFS nodes that collaboratively pin all content added to the IPFS Cluster by one or many trusted peers. You can learn more about collaborative clusters, including how to set up a cluster yourself, from [cluster.ipfs.io](https://cluster.ipfs.io/documentation/collaborative/setup/)
211+
IPFS collaborative clusters are groups of IPFS nodes that collaboratively pin all content added to the IPFS Cluster by one or many trusted peers. You can learn more about collaborative clusters, including how to set up a cluster yourself, from [ipfscluster.io](https://ipfscluster.io/documentation/collaborative/setup/)
212212

213213
### Pinning services
214214

docs/install/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Want to build decentralized applications and store your application data on IPFS
1919

2020
## IPFS as infrastructure
2121

22-
Planning to set up several IPFS nodes within one network? You'll want to take a look at installing [IPFS Cluster →](./server-infrastructure.md)
22+
Planning to set up several IPFS nodes within one network? You'll want to take a look at installing [IPFS Cluster →](./ipfs-cluster.md)
2323

2424
## Surf the decentralized web
2525

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
---
2-
title: Server infrastructure
2+
title: IPFS Cluster
33
description: IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating, and tracking a global pin-set distributed among multiple peers. Learn how to install it here.
44
current-ipfs-cluster-version: v1.0.2
55
---
66

7-
# Server infrastructure
7+
# IPFS Cluster
88

9-
If you want to install IPFS in a server environment and offer IPFS as a service, you should look at IPFS Cluster. IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating, and tracking a global pin-set distributed among multiple peers. This makes it significantly easier to manage multiple IPFS nodes and ensure that data is available across an internal network.
9+
If you want to install IPFS in a server environment and offer IPFS as a service, you should look at [IPFS Cluster](https://ipfscluster.io/) as a way to scale your IPFS deployment beyond a single IPFS daemon. IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating, and tracking a global pin-set distributed among multiple peers. This makes it significantly easier to manage multiple IPFS nodes and ensure that data is available across an internal network.
10+
11+
@[youtube](-SYDlid7Nqs)
1012

1113
## Create a local cluster
1214

13-
To see if IPFS Cluster is suitable for your project, follow this quick start guide and spin up a local IPFS Cluster instance. At the end of this guide, you will have a solid understanding of how IPFS Cluster is set up and how to interact with it. If you'd rather create a production-ready cluster, take a look at the [official IPFS Cluster documentation](https://cluster.ipfs.io/)
15+
To see if IPFS Cluster is suitable for your project, follow this quick start guide and spin up a local IPFS Cluster instance. At the end of this guide, you will have a solid understanding of how IPFS Cluster is set up and how to interact with it. If you'd rather create a production-ready cluster, take a look at the [official IPFS Cluster documentation](https://ipfscluster.io/)
1416

1517
### Prerequisites
1618

@@ -157,4 +159,4 @@ The terminal running the `ipfs-cluster-ctl` daemon will close any open connectio
157159
158160
## Next steps
159161
160-
If you want to delve deeper into IPFS Cluster, check out the project's documentation at [cluster.ipfs.io →](https://cluster.ipfs.io/)
162+
If you want to delve deeper into IPFS Cluster, check out the project's documentation at [ipfscluster.io](https://ipfscluster.io/)

docs/project/related-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A modular network stack, libp2p enables you to run your network applications fre
1717

1818
## IPFS Cluster
1919

20-
IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating and tracking a global pinset distributed among multiple peers. Learn more at [https://cluster.ipfs.io/](https://cluster.ipfs.io/).
20+
IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating and tracking a global pinset distributed among multiple peers. Learn more at [https://ipfscluster.io/](https://ipfscluster.io/).
2121

2222
## DNSLink
2323

0 commit comments

Comments
 (0)