# Support for x-ipfs-path
headers in IPFS Companion
IPFS Companion can redirect traditional HTTP requests to IPFS if the x-ipfs-path
response header is provided.
Additionally, some browser vendors like Brave (opens new window) may display an Open using IPFS button on the address bar when this header is returned for the root document in the current tab.
# Overview
IPFS HTTP gateways can return an x-ipfs-path
header with each response. The value of the header is the IPFS path of the returned payload.
curl -sI https://en.wikipedia-on-ipfs.org | grep x-ipfs-path
> x-ipfs-path: /ipns/en.wikipedia-on-ipfs.org/
curl -sI https://dweb.link/ipfs/bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi | grep x-ipfs-path
> x-ipfs-path: /ipfs/bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi
The WebExtension API onHeadersReceived (opens new window) can cancel and redirect the HTTP request as soon as the response headers arrive. This means the client can drop the initial request, avoiding duplicate downloads of the content.
Detection of the x-ipfs-path
header can be disabled in the Preferences screen (but is enabled by default).
# Use cases
# Fallback for edge cases where the IPFS path is not present in the URL
A website owner can have the HTTP gateway behind a reverse-proxy, but configure it to expose /ipfs/<cid>/
under /
, in which case path-based IPFS detection by IPFS Companion (see onBeforeRequest (opens new window)) won't work.
Thanks to the x-ipfs-path
header, we have a reliable fallback for these configurations.
# Hinting DNSLink lookups
The presence of an x-ipfs-path
header is a clear indicator that a website uses IPFS.
There is a "best-effort" DNSLink policy enabled by default to execute blocking DNS TXT lookups for FQDNs that returned the header.
Note that x-ipfs-path
values starting with /ipns/
will be ignored if DNSLink policy is "off" or the DNS TXT record is missing.
# Other resources
- An overview of the
onBeforeRequest
andonHeadersReceived
listeners can be found in the WebExtensions API: webRequest (opens new window) documentation