Updates docs link to non-beta site.
Johnny Matthews committed
May 21, 2020 at 11:17 UTC
c8a7f89e11967724b9c0efec70bcd1515908e520
2 files changed
+6
-6
.github/ISSUE_TEMPLATE/config.yml
+1
-1
@@ -10,7 +10,7 @@ contact_links:
10
url: https://github.com/ipfs/go-ipfs/blob/master/docs/experimental-features.md
11
about: Documentation on Private Networks, Filestore and other experimental features.
12
- name: HTTP API Reference
13
- url: https://docs-beta.ipfs.io/reference/http/api/#api-v0-add
13
+ url: https://docs.ipfs.io/reference/http/api/#api-v0-add
14
about: Documentation of all go-ipfs HTTP API endpoints.
15
- name: IPFS Official Forum
16
url: https://discuss.ipfs.io
docs/config.md
+5
-5
@@ -505,7 +505,7 @@ Default: `[]`
505
A boolean to configure whether the gateway at the hostname provides [Origin isolation](https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy)
506
between content roots.
507
508
-- `true` - enables [subdomain gateway](#https://docs-beta.ipfs.io/how-to/address-ipfs-on-web/#subdomain-gateway) at `http://*.{hostname}/`
508
+- `true` - enables [subdomain gateway](#https://docs.ipfs.io/how-to/address-ipfs-on-web/#subdomain-gateway) at `http://*.{hostname}/`
509
- **Requires whitelist:** make sure respective `Paths` are set.
510
For example, `Paths: ["/ipfs", "/ipns"]` are required for `http://{cid}.ipfs.{hostname}` and `http://{foo}.ipns.{hostname}` to work:
511
```json
@@ -521,7 +521,7 @@ between content roots.
521
- **Backward-compatible:** requests for content paths such as `http://{hostname}/ipfs/{cid}` produce redirect to `http://{cid}.ipfs.{hostname}`
522
- **API:** if `/api` is on the `Paths` whitelist, `http://{hostname}/api/{cmd}` produces redirect to `http://api.{hostname}/api/{cmd}`
523
524
-- `false` - enables [path gateway](https://docs-beta.ipfs.io/how-to/address-ipfs-on-web/#path-gateway) at `http://{hostname}/*`
524
+- `false` - enables [path gateway](https://docs.ipfs.io/how-to/address-ipfs-on-web/#path-gateway) at `http://{hostname}/*`
525
- Example:
526
```json
527
"Gateway": {
@@ -575,7 +575,7 @@ $ ipfs config --json Gateway.PublicGateways '{"localhost": null }'
575
576
Below is a list of the most common public gateway setups.
577
578
-* Public [subdomain gateway](https://docs-beta.ipfs.io/how-to/address-ipfs-on-web/#subdomain-gateway) at `http://{cid}.ipfs.dweb.link` (each content root gets its own Origin)
578
+* Public [subdomain gateway](https://docs.ipfs.io/how-to/address-ipfs-on-web/#subdomain-gateway) at `http://{cid}.ipfs.dweb.link` (each content root gets its own Origin)
579
```console
580
$ ipfs config --json Gateway.PublicGateways '{
581
"dweb.link": {
@@ -589,7 +589,7 @@ Below is a list of the most common public gateway setups.
589
**Note II:** if you run go-ipfs behind a reverse proxy that provides TLS, make it adds a `X-Forwarded-Proto: https` HTTP header to ensure users are redirected to `https://`, not `http://`. The NGINX directive is `proxy_set_header X-Forwarded-Proto "https";`.:
590
`https://dweb.link/ipfs/{cid}` → `https://{cid}.ipfs.dweb.link`
591
592
-* Public [path gateway](https://docs-beta.ipfs.io/how-to/address-ipfs-on-web/#path-gateway) at `http://ipfs.io/ipfs/{cid}` (no Origin separation)
592
+* Public [path gateway](https://docs.ipfs.io/how-to/address-ipfs-on-web/#path-gateway) at `http://ipfs.io/ipfs/{cid}` (no Origin separation)
593
```console
594
$ ipfs config --json Gateway.PublicGateways '{
595
"ipfs.io": {
@@ -605,7 +605,7 @@ Below is a list of the most common public gateway setups.
605
```
606
* Note that `NoDNSLink: false` is the default (it works out of the box unless set to `true` manually)
607
608
-* Hardened, site-specific [DNSLink gateway](https://docs-beta.ipfs.io/how-to/address-ipfs-on-web/#dnslink-gateway).
608
+* Hardened, site-specific [DNSLink gateway](https://docs.ipfs.io/how-to/address-ipfs-on-web/#dnslink-gateway).
609
Disable fetching of remote data (`NoFetch: true`)
610
and resolving DNSLink at unknown hostnames (`NoDNSLink: true`).
611
Then, enable DNSLink gateway only for the specific hostname (for which data