From ad12d17f999a6fa3f154ba6623cf82d91d5375d6 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 12 Mar 2023 15:31:05 -0700 Subject: [PATCH] add webfinger --- .eleventy.js | 1 + src/.well-known/webfinger | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 src/.well-known/webfinger diff --git a/.eleventy.js b/.eleventy.js index 0c74c85d..350f99d0 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -33,6 +33,7 @@ module.exports = function (eleventyConfig) { // copy these static files to _site folder eleventyConfig.addPassthroughCopy('src/assets') eleventyConfig.addPassthroughCopy('src/manifest.json') + eleventyConfig.addPassthroughCopy('src/.well-known') // create excerpts eleventyConfig.setFrontMatterParsingOptions({ diff --git a/src/.well-known/webfinger b/src/.well-known/webfinger new file mode 100644 index 00000000..2af4a7bc --- /dev/null +++ b/src/.well-known/webfinger @@ -0,0 +1,30 @@ +{ + "subject": "acct:coryd@social.lol", + "aliases": ["https://coryd.dev", "https://social.lol/@coryd", "https://social.lol/users/coryd"], + "links": [ + { + "rel": "http://webfinger.net/rel/avatar", + "type": "image/webp", + "href": "https://coryd.dev/static/images/avatar.webp" + }, + { + "rel": "http://webfinger.net/rel/profile-page", + "type": "text/html", + "href": "https://coryd.dev" + }, + { + "rel": "http://webfinger.net/rel/profile-page", + "type": "text/html", + "href": "https://social.lol/users/coryd" + }, + { + "rel": "self", + "type": "application/activity+json", + "href": "https://social.lol/users/coryd" + }, + { + "rel": "http://ostatus.org/schema/1.0/subscribe", + "template": "social.lol/authorize_interaction?uri={uri}" + } + ] +}