/software

📠 How to post a site to IPFS easily

There’s a bit of a chicken-and-egg problem with IPFS to get pages to link to each other that is frusturating to IPFS users. To have the IPFS hash for the link you first need to get the IPFS hash of the other link. One way around this is to make all the URLs relative. This is a lot easier to do than you think.

First make a blog however you want and then host it locally, e.g. at localhost:1313 (for Hugo people).

Then open another terminal and do the following wget command:

$ wget -k --recursive --no-clobber --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains localhost --no-parent http://localhost:1313/

This will generate a offline version of your website that has everything with relative links. Now create an IPFS version using the downloaded version with

$ ipfs add -r localhost+1313 -Q
<your hash>

Now you can view your site on IPFS at https://ipfs.io/ipfs/<your hash>.

June 3, 2018

🗝️ Installing Keybase on Chromebook 🏙️ IPFS enabled personal internet archive