Skip to content

Commit 2c3acad

Browse files
committed
fix a few links
1 parent 1f69375 commit 2c3acad

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/quickstart/publish.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Pinning can be done at various levels, from individual files to entire directori
2828

2929
### Pinning services
3030

31-
[Pinning services](../concepts/persistence/#pinning-services) are similar to hosting services, in that they run an IPFS node for you and ensure that your files are available to the IPFS network.
31+
[Pinning services](../concepts/persistence.md#pinning-services) are similar to hosting services, in that they run an IPFS node for you and ensure that your files are available to the IPFS network.
3232

3333
:::callout
3434
Data pinned to the IPFS network is public by default and retrievable by anyone. Avoid publishing private data or adequately encrypt it before publishing.
@@ -37,9 +37,9 @@ Data pinned to the IPFS network is public by default and retrievable by anyone.
3737
## Prerequisites
3838

3939
- A free [web3.storage](https://web3.storage/) account.
40-
- The [following image](/images/welcome-to-IPFS.jpg), downloaded and saved on your computer:
40+
- The [following image](../quickstart/images/welcome-to-IPFS.jpg), downloaded and saved on your computer:
4141

42-
![image](/images/welcome-to-IPFS.jpg)
42+
![image](../quickstart/images/welcome-to-IPFS.jpg)
4343

4444
## Uploading and pinning a file
4545

@@ -51,7 +51,7 @@ Data pinned to the IPFS network is public by default and retrievable by anyone.
5151

5252
![web3.storage upload button](./images/web3-upload-button.png)
5353

54-
1. Upload and pin the file by doing either dragging the [image file](/images/welcome-to-IPFS.jpg) to the dashed rectangle labeled **Drag and drop your files here**, or clicking on the dashed rectangle to select the [image](/images/welcome-to-IPFS.jpg) file.
54+
1. Upload and pin the file by doing either dragging the [image file](../quickstart/images/welcome-to-IPFS.jpg) to the dashed rectangle labeled **Drag and drop your files here**, or clicking on the dashed rectangle to select the [image](../quickstart/images/welcome-to-IPFS.jpg) file.
5555

5656
![web3.storage upload tab](./images/web3-upload-tab.png)
5757

@@ -89,7 +89,7 @@ The transformation into a content-addressable representation is a local operatio
8989

9090
## Retrieving with a gateway
9191

92-
Now that your file is pinned to a pinning service, you will fetch it using an IPFS gateway. An [**IPFS Gateway**](/concepts/ipfs-gateway/) is an HTTP interface that serves as a bridge to the IPFS network. In other words, it allows you to fetch CIDs from IPFS using HTTP.
92+
Now that your file is pinned to a pinning service, you will fetch it using an IPFS gateway. An [**IPFS Gateway**](../concepts/ipfs-gateway.md) is an HTTP interface that serves as a bridge to the IPFS network. In other words, it allows you to fetch CIDs from IPFS using HTTP.
9393

9494
Pinning services typically offer an IPFS gateway as a way to easily retrieve your CIDs. For example, Web3.storage operates the [w3s.link](https://w3s.link) gateway, from which you can retrieve the uploaded CID.
9595

docs/quickstart/retrieve.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The CID you will retrieve is actually a folder containing a single image file. T
2828
There are two primary ways to retrieve files and directories published to IPFS:
2929

3030
- Use an [**IPFS node**](../concepts/nodes.md) by installing one of the IPFS implementations, e.g. [Kubo](../concepts/nodes.md#kubo) on your computer. This allows you to fetch and verify CIDs from other nodes in the IPFS network.
31-
- Use an [**IPFS Gateway**](/concepts/ipfs-gateway/), an HTTP interface with the IPFS network that allows you to fetch data from IPFS using HTTP. Pinning services typically offer an IPFS gateway as a way to easily retrieve your CIDs.
31+
- Use an [**IPFS Gateway**](../concepts/ipfs-gateway.md), an HTTP interface with the IPFS network that allows you to fetch data from IPFS using HTTP. Pinning services typically offer an IPFS gateway as a way to easily retrieve your CIDs.
3232

3333
The **node** option allows you access to the full suite of IPFS protocols. The **Gateway** option serves as a bridge in situations where you might be constrained to using HTTP, such as in web apps where your app users may not be running an IPFS node.
3434

@@ -46,15 +46,15 @@ While verification is almost always recommended, in reality, there are situation
4646

4747
## Fetching the CID with Kubo
4848

49-
To fetch the CID with [Kubo](/install/command-line/), complete the steps below:
49+
To fetch the CID with [Kubo](../install/command-line.md), complete the steps below:
5050

5151
1. Ensure that the Kubo daemon is installed and running:
5252

5353
```bash
5454
$ ipfs daemon
5555
```
5656

57-
2. To fetch the file, run the [`ipfs get [CID]`](/reference/kubo/cli/#ipfs-get) command:
57+
2. To fetch the file, run the [`ipfs get [CID]`](../reference/kubo/cli.md#ipfs-get) command:
5858

5959
```bash
6060
$ ipfs get bafybeicn7i3soqdgr7dwnrwytgq4zxy7a5jpkizrvhm5mv6bgjd32wm3q4

0 commit comments

Comments
 (0)