My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: all WebFinger requests should return me

+1 -31
+1 -2
netlify.toml
··· 30 30 31 31 [[redirects]] 32 32 from = "/.well-known/webfinger" 33 - to = "/finger/:user.json" 33 + to = "https://fosstodon.org/.well-known/webfinger?resource=acct:hauleth@fosstodon.org" 34 34 status = 200 35 - query = { resource = ":user" } 36 35 37 36 [[plugins]] 38 37 package = "netlify-plugin-webmentions"
-29
static/finger/acct:hauleth@hauleth.dev.json
··· 1 - { 2 - "subject": "acct:hauleth@hauleth.dev", 3 - "aliases": [ 4 - "acct:hauleth@fosstodon.org", 5 - "acct:hauleth@plan.cat", 6 - "https://fosstodon.org/@hauleth", 7 - "https://fosstodon.org/users/hauleth" 8 - ], 9 - "links": [ 10 - { 11 - "rel": "http://webfinger.net/rel/profile-page", 12 - "type": "text/html", 13 - "href": "https://fosstodon.org/@hauleth" 14 - }, 15 - { 16 - "rel": "self", 17 - "type": "application/activity+json", 18 - "href": "https://fosstodon.org/users/hauleth" 19 - }, 20 - { 21 - "rel": "self", 22 - "href": "https://hauleth.dev/" 23 - }, 24 - { 25 - "rel": "http://ostatus.org/schema/1.0/subscribe", 26 - "template": "https://fosstodon.org/authorize_interaction?uri={uri}" 27 - } 28 - ] 29 - }