Replies: 5 comments
-
Service sequencesequenceDiagram
participant gateway as Service Host (IPFS Gateway)
participant node as Data Host (IPFS Node)
participant user as User (Web Browser)
Note over gateway, node: node participte in the service
gateway -->> node: node address
node ->> gateway: ipfs swarm connect <node address>
Note over node, user: host and advertise data
node ->> node: ipfs add
node -->> user: CID
Note over gateway, user: data consumption through the service
user ->> gateway: HTTP GET <CID> Request
node -->> gateway: transfer
gateway -->> gateway: cache
gateway ->> user: HTTP GET Respose
|
Beta Was this translation helpful? Give feedback.
-
Suggested first steps after you have the IPFS Node (a kubo instance)0. [Node] check if your node can get a globally shared content.Let's check if the following works on your node (VM).
1. [Node] check node addresses
This is the list of node addresses. Inside the node addresses, Do you have any global accessible addresses in the list of node addresses? Then share it with @hfu so that @hfu can connect his node to your node. 2. [Node] check if your node cat get a content from @hfuFIXME 3. [Gateway] make your gateway accessible from the Internet (via HTTP/2)The gateway function is exposed only to local host by default. We normally create a reverse-proxy using nginx to make your gateway accessible from the Internet. My nginx setting (/etc/nginx/sites-available/default) for my experimental server
|
Beta Was this translation helpful? Give feedback.
-
🎮 Test contentsI have added the following contents for testing purposes. ⛰️ Smart Maps Global Elevation TilesCID: QmWsTYyEq9Trn31ZuU8cAJRnCm2WbzduiQLm4Uy7AfcNSs 🌍 OSMFJ OpenStreetMap PMTilesCID: QmSMpoELQsJjpYYEuNhaoQPsQdq8dVTkbt63vt9ZSu9Dja 🎮 Demo siteI created an unlisted demo site at https://observablehq.com/d/ac71bc83fbe16bc9 for testing. |
Beta Was this translation helpful? Give feedback.
-
smb.optgeo.org is back!Thanks to a kind offer by my friend, the name of smb.optgeo.org is back! |
Beta Was this translation helpful? Give feedback.
-
A script to create a backup IPFS Node |
Beta Was this translation helpful? Give feedback.
-
Background
Existing hosting options
Proposal
Considerations
Beta Was this translation helpful? Give feedback.
All reactions