@@ -26,7 +26,7 @@ in your web browser! Next, to view it coming from another ipfs node, you can try
2626rather ugly. Lets look at some ways to get rid of them.
2727
2828First, you can do a simple DNS TXT record, containing ` dnslink=/ipfs/$SITE_HASH ` .
29- Once that record propogates , you should be able to view your site at
29+ Once that record propagates , you should be able to view your site at
3030` http://localhost:8080/ipns/your.domain ` . Now thats quite a bit cleaner.
3131You can also try this on the gateway at ` http://gateway.ipfs.io/ipns/your.domain `
3232
@@ -46,12 +46,12 @@ Published to <your peer id>: /ipfs/$SITE_HASH
4646Now, you can test that it worked by viewing: ` http://localhost:8080/ipns/<your peer id> ` .
4747And also try the same link on the public gateway. Once you're convinced that works,
4848lets again hide the hash. Change your DNS TXT record to ` dnslink=/ipns/<your peer id> ` ,
49- wait for that record to propogate , and then try accessing ` http://localhost:8080/ipns/your.domain ` .
49+ wait for that record to propagate , and then try accessing ` http://localhost:8080/ipns/your.domain ` .
5050
5151At this point, you have a website on ipfs/ipns, and you may be wondering how
5252you could expose it at ` http://your.domain ` , so that the Internet users of
5353today may access it too without them having to know about any of this. It's
54- actually surpisingly simple to do, all you need for this is your previously
54+ actually surprisingly simple to do, all you need for this is your previously
5555created TXT record and to point the A record of ` your.domain ` to the IP
5656address of an ipfs daemon that listens on port 80 for HTTP requests (such as
5757` gateway.ipfs.io ` ). The users' browsers will send ` your.domain ` in the Host
@@ -60,12 +60,12 @@ gateway will recognize `your.domain` as an IPNS name, and so it will serve
6060from under ` /ipns/your.domain/ ` instead of ` / ` .
6161
6262So, if you point ` your.domain ` 's A record to the IP of ` gateway.ipfs.io ` , and
63- then wait for the DNS to propogate , then anyone should be able to access your
63+ then wait for the DNS to propagate , then anyone should be able to access your
6464ipfs-hosted site without any extra configuration simply at
6565` http://your.domain ` .
6666
6767Alternatively, it is possible to use CNAME records to point at the DNS records
68- of the gateway. This way, IP addresses of the gateway are automtically
68+ of the gateway. This way, IP addresses of the gateway are automatically
6969updated. Note however that CNAME records to not allow for other records, such
7070as a TXT to refer to the ipfs/ipns record. Because of this, ipfs allows to
7171create a DNS TXT record for ` _dnslink.your.domain ` with
0 commit comments