diff --git a/config.toml b/config.toml index 3b7c0da..3179628 100644 --- a/config.toml +++ b/config.toml @@ -60,11 +60,6 @@ url = "https://github.com/ipfs/archives/tree/master/tutorials/replicating-large- weight = 3 [[menu.guides]] parent = "guides" -name = "Addressing in Browsers" -url = "https://github.com/ipfs/in-web-browsers/blob/master/ADDRESSING.md" -weight = 4 -[[menu.guides]] -parent = "guides" name = "Interactive Tutorials" url = "https://proto.school/#/tutorials" weight = 5 diff --git a/content/guides/guides/addressing.md b/content/guides/guides/addressing.md new file mode 100644 index 0000000..49cbaa9 --- /dev/null +++ b/content/guides/guides/addressing.md @@ -0,0 +1,133 @@ +--- +title: Addressing in Browsers +menu: + guides: + parent: guides +weight: 2 +--- + + + +This document is a guide to how to address IPFS content paths on the web. + +## HTTP Gateways + +Gateways are provided strictly for convenience: in other words, they help tools that speak HTTP but do not speak distributed protocols such as IPFS. They are the first stage of the upgrade path for the web. + +### Centralization Concerns + +HTTP gateways have worked well since 2015, but they come with a significant set of limitations related both to the centralized nature of HTTP and some of HTTP's semantics. Location-based addressing of a gateway depends on both DNS and HTTPS/TLS, which relies on a trust in [certificate authorities](https://en.wikipedia.org/wiki/Certificate_authority) (CA) and [public key infrastructure](https://en.wikipedia.org/wiki/Public_key_infrastructure) (PKI). In the long term, these issues should be mitigated by use of opportunistic protocol upgrade schemes. + +### Protocol Upgrade + +Tools and browser extensions should detect IPFS content paths and resolve them directly over IPFS protocol. They should use HTTP gateway only as a fallback when no native implementation is available in order to ensure a smooth, backward-compatible transition. + +### Gateway Types + +#### Path Gateway + +In the most basic scheme, a URL path used for content addressing is effectively a resource name without a canonical location. The HTTP server provides the location part, which makes it possible for browsers to interpret an IPFS content path as relative to the current server and just work without a need for any conversion: + +``` +https://.tld/ipfs//path/to/resource +https://.tld/ipns//path/to/resource +``` + + + + +Examples: + +``` +https://ipfs.io/ipfs/bafybeiemxf5abjwjbikoz4mc3a3dla6ual3jsgpdr4cjr3oz3evfyavhwq/wiki/Vincent_van_Gogh.html +https://ipfs.io/ipfs/QmT5NvUtoM5nWFfrQdVrFtvGfKFmG7AHE8P34isapyhCxX/wiki/Mars.html +https://ipfs.io/ipns/tr.wikipedia-on-ipfs.org/wiki/Anasayfa.html +``` + +#### Subdomain Gateway + +When [origin-based security](https://en.wikipedia.org/wiki/Same-origin_policy) perimeter is needed, [CIDv1](https://github.com/ipld/cid#cidv1) in Base32 ([RFC4648](https://tools.ietf.org/html/rfc4648#section-6), no padding) should be used in the subdomain: + + https://.ipfs..tld/path/to/resource + +Example: + + https://bafybeiemxf5abjwjbikoz4mc3a3dla6ual3jsgpdr4cjr3oz3evfyavhwq.ipfs.dweb.link/wiki/ + https://bafybeiemxf5abjwjbikoz4mc3a3dla6ual3jsgpdr4cjr3oz3evfyavhwq.ipfs.cf-ipfs.com/wiki/Vincent_van_Gogh.html + + + + +#### DNSLink Gateway + +The gateway provided by the IPFS daemon understands the `Host` header present in HTTP requests, and will check if [DNSLink](/guides/concepts/dnslink) exists for a specified [domain name](https://en.wikipedia.org/wiki/Fully_qualified_domain_name). +If DNSLink is present, the gateway will return content from a path resolved via DNS TXT record. +This type of gateway provides full [origin isolation](https://en.wikipedia.org/wiki/Same-origin_policy). + +Example: https://docs.ipfs.io (this website) + +For a more complete DNSLink guide, including tutorials, usage examples and FAQs, check out [dnslink.io](https://dnslink.io). + +--- + +## Native URLs + +Subdomain convention can be replaced with a native handler. The IPFS URL protocol scheme follows the same requirement of case-insensitive CIDv1 in Base32 as subdomains: + +``` +ipfs://{cidv1b32}/path/to/resource +``` + +An IPFS URL does not retain the original path, but instead requires a conversion step to/from URI representation: + +> `ipfs://{immutable-root}/path/to/resourceA` → `/ipfs/{immutable-root}/path/to/resourceA` +> `ipns://{mutable-root}/path/to/resourceB` → `/ipns/{mutable-root}/path/to/resourceB` + +The first element after the double slash is an opaque identifier representing the content root. It is interpreted as an authority component used for origin calculation, which provides necessary isolation between security contexts of different content trees. + +Example: + +``` +ipfs://bafybeiemxf5abjwjbikoz4mc3a3dla6ual3jsgpdr4cjr3oz3evfyavhwq/wiki/Vincent_van_Gogh.html +``` + + + +--- + +## References + + +### Technical Specification for Implementers + +The best and most up-to-date source of truth about IPFS addressing can be found in [the IPFS in-web-browsers repo](https://github.com/ipfs/in-web-browsers/blob/master/ADDRESSING.md). + +### Background on Address Scheme Discussions + +Discussions around IPFS addressing have been going on since @jbenet published the [IPFS whitepaper](https://ipfs.io/ipfs/QmR7GSQM93Cx5eAg6a6yRzNde1FQv7uL6X1o4k7zrJa3LX/ipfs.draft3.pdf), with a number of other approaches being proposed. This long-standing design discussion includes many lengthy GitHub issue threads, but a good summary can be found in [this PR ](https://github.com/ipfs/specs/pull/152). + +### Companion Browser Extension + +[IPFS Companion](https://github.com/ipfs-shipyard/ipfs-companion#ipfs-companion) is a +browser extension that simplifies access to IPFS resources. + +It provides support for native URLs and will automatically redirect IPFS gateway requests to your local daemon so that you are not relying on, or trusting, remote gateways. + +### Future: Shared Dweb Namespace + +The distributed web community is exploring the idea of a shared `dweb` namespace to remove the complexity of addressing IPFS and other content-addressed protocols. Currently investigated approaches include: + +- `dweb://` protocol handler ([arewedistributedyet/issues/28](https://github.com/arewedistributedyet/arewedistributedyet/issues/28)) +- `.dweb` special-use top-level domain name ([arewedistributedyet/issues/34](https://github.com/arewedistributedyet/arewedistributedyet/issues/34))