repos / pico

pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh
git clone https://github.com/picosh/pico.git

commit
29ab4f5
parent
2fe9e19
author
Eric Bower
date
2022-08-28 01:10:20 +0000 UTC
docs: add section about custom domains check endpoint
1 files changed,  +10, -2
M prose/html/help.page.tmpl
+10, -2
 1@@ -267,14 +267,22 @@ This will show up on the blog landing page.
 2             2 DNS records need to be created:
 3         </p>
 4 
 5-        <p>CNAME for the domain to prose (subdomains or DNS hosting with CNAME flattening) or A record</p>
 6+        <p><code>CNAME</code> for the domain to prose (subdomains or DNS hosting with <code>CNAME</code> flattening) or <code>A</code> record</p>
 7         <pre>CNAME subdomain.yourcustomdomain.com -> prose.sh</pre>
 8         <p>Resulting in:</p>
 9+
10         <pre>subdomain.yourcustomdomain.com.         300     IN      CNAME   prose.sh.</pre>
11-        <p>And a TXT record to tell Prose what blog is hosted on that domain at the subdomain entry _prose</p>
12+
13+        <p>And a <code>TXT</code> record to tell Prose what blog is hosted on that domain at the subdomain entry <code>_prose</code></p>
14         <pre>TXT _prose.subdomain.yourcustomdomain.com -> yourproseusername</pre>
15         <p>Resulting in:</p>
16         <pre>_prose.subdomain.yourcustomdomain.com.         300     IN      TXT     "hey"</pre>
17+
18+        <p>
19+            Depending on your DNS, this could take some time to fully switch over.  We have an endpoint
20+            to check whether or not custom domains are setup:
21+            <pre>curl -vvvv https://prose.sh/check?domain=<DOMAIN></pre>
22+        </p>
23     </section>
24 
25     <section id="hugo-support">