Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export default function About (): ReactElement {
<p><strong>Why?</strong> It improves decentralization, offers enhanced security (CID verification happens on end user's machine) and reliability (ability to do retrieval from multiple sources without reliance on a single HTTP server).</p>
<p><strong>How does it work?</strong> A Service Worker is registered on the initial page load, and then intercepts HTTP requests for content stored on <a href='https://docs.ipfs.tech/how-to/address-ipfs-on-web/' target='_blank' rel='noreferrer'>IPFS paths</a> such as <code>/ipfs/*</code> (immutable) and <code>/ipns/*</code> (mutable), takes care of IPFS retrieval, verification, UnixFS deserialization, and returns Response objects to the browser.</p>
<p><strong>Is this production ready?</strong> This project is under heavy development and is not yet fully compliant with <a href='https://specs.ipfs.tech/http-gateways/' target='_blank' rel='noreferrer'>IPFS Gateway Specfications</a>. Track our efforts <a href='https://github.com/ipfs/service-worker-gateway/milestones' target='_blank' rel='noreferrer'>here</a>.</p>
<p><strong>Want to report abuse?</strong> This gateway uses the <a href='https://badbits.dwebops.pub/' target='_blank' rel='noreferrer'>Bad Bits</a> blocklist. To report harmful content, <a href='https://badbits.dwebops.pub/#reporting' target='_blank' rel='noreferrer'>submit it there</a>.</p>
<p><strong>Found a bug?</strong> We welcome you to report it by <a href='https://github.com/ipfs/service-worker-gateway/issues/new' target='_blank' rel='noreferrer'>opening an issue</a> with details like an address and a screenshot.</p>
</aside>
)
Expand Down
Loading