From ba1fda2851378802fe2ad3b8ad02dc7c9b001c0e Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Sun, 21 Apr 2019 01:11:55 +0000 Subject: [PATCH] dig for TXT, not TEXT As far as I can tell, we're only creating a TXT record here, and dig will never return the dnslink when asked for a TEXT record. --- content/guides/examples/websites.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/examples/websites.md b/content/guides/examples/websites.md index 85fb853..1936e89 100644 --- a/content/guides/examples/websites.md +++ b/content/guides/examples/websites.md @@ -49,7 +49,7 @@ Create a DNS TXT record ([DNSLink](https://docs.ipfs.io/guides/concepts/dnslink/ Once you've created that record, and it has propagated you should be able to find it. ```bash -$ dig +noall +answer TEXT your.domain +$ dig +noall +answer TXT your.domain your.domain. 60 IN TXT "dnslink=/ipfs/$SITE_CID" ``` Now you can view your site at `http://localhost:8080/ipns/your.domain`.