commit 6adb5336b5e75aac90e8d31e8ff025741406f7ef
parent b6ddd91524cf60db0e7cd93516b78c8f0f38ae4a
Author: Natalie Pendragon <natpen@natpen.net>
Date: Wed, 5 Aug 2020 09:03:56 -0400
[serve] Add IP addresses to about page
Diffstat:
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/serve/templates/about.gmi b/serve/templates/about.gmi
@@ -7,7 +7,10 @@ GUS is a search engine for all content served over the Gemini Protocol. It can h
To control crawling of your site, you can use a robots.txt file, Place it in your document root directory such that a request for "robots.txt" will fetch it.
-GUS obeys User-agent of "gus" and "*".
+GUS obeys User-agent of "gus" and "*". Additionally, you can identify the GUS by looking for any requests to your site made by the following IP addresses:
+
+* IPv6: 2604:a880:400:d0::17e4:b001
+* IPv4: 198.199.84.116
If you have questions about or ideas for GUS, please email me at vee@vnsf.xyz.
@@ -64,8 +67,6 @@ The URL structure for retrieving a certain URL's backlinks page is predictable,
Note the distinction between "internal" and "cross-capsule" backlinks. Internal backlinks are backlinks from within your own capsule to the given page. Cross-capsule backlinks are backlinks from other users' capsules. Note that the cross-capsule determination is slightly more advanced than purely checking if the hosts are different - it also takes into account different users on pubnixes, so, for example, gemini://foo.bar, gemini://foo.bar/~ronald, and gemini://foo.bar/~mcdonald would all be considered distinct capsules, as they are all presumably authored and maintained by distinct humans.
-{% include 'fragments/footer.gmi' %}
-
### Threads (coming soon!)
Oftentimes in Geminispace a post on someone's gemlog will generate a reply on someone else's gemlog. Sometimes many replies! Sometimes the replies generate their own replies! GUS Threads allow you to visualize and explore these threads within Geminispace. You can peruse threads freely, but you can also participate in them without needing any extra software on your end. Inside your reply post, simply link to the post you're replying to (which frankly most are already doing anyway!) and GUS will sort out the rest.
@@ -75,3 +76,5 @@ For those interested in more technical detail, what follows is a deeper descript
The next important piece of GUS Threads functionality is that, for all the eligible post pages in Geminispace at a given time, threads are constructed out of cross-capsule links between those pages (see above documentation on backlinks for more information about the cross-capsule distinction).
One nuanced technical limitation is that a given page can only exist in a thread one time. And GUS keeps the "one time" that exists _latest_ in the thread.
+
+{% include 'fragments/footer.gmi' %}