From 45c8c79ea943f661f0698f15f8736f8322850030 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Thu, 29 Dec 2022 22:10:18 -0800 Subject: [PATCH] Allow webfinger to work off brokenco.de --- .well-known/webfinger | 23 +++++++++++++++++++++++ _config.yml | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 .well-known/webfinger diff --git a/.well-known/webfinger b/.well-known/webfinger new file mode 100644 index 0000000..33f674c --- /dev/null +++ b/.well-known/webfinger @@ -0,0 +1,23 @@ +{ + "subject": "acct:rtyler@hacky.town", + "aliases": [ + "https://hacky.town/@rtyler", + "https://hacky.town/users/rtyler" + ], + "links": [ + { + "rel": "http://webfinger.net/rel/profile-page", + "type": "text/html", + "href": "https://hacky.town/@rtyler" + }, + { + "rel": "self", + "type": "application/activity+json", + "href": "https://hacky.town/users/rtyler" + }, + { + "rel": "http://ostatus.org/schema/1.0/subscribe", + "template": "https://hacky.town/authorize_interaction?uri={uri}" + } + ] +} diff --git a/_config.yml b/_config.yml index d279597..c1d5050 100644 --- a/_config.yml +++ b/_config.yml @@ -18,6 +18,8 @@ collections: permalink: microblog/:year/:month/:title/ lsi: false +include: + - '.well-known' exclude: - README.markdown - Makefile