My personal blog hauleth.dev
blog
0
fork

Configure Feed

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

chore: test webfinger with Fosstodon

+40
+11
netlify.toml
··· 18 18 Permissions-Policy = "accelerometer=(), ambient-light-sensor=(), autoplay=(), battery=(), camera=(), cross-origin-isolated=(), display-capture=(), document-domain=(), encrypted-media=(), execution-while-not-rendered=(), execution-while-out-of-viewport=(), fullscreen=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), navigation-override=(), payment=(), picture-in-picture=(), publickey-credentials-get=(), screen-wake-lock=(), sync-xhr=(), usb=(), web-share=(), xr-spatial-tracking=(), clipboard-read=(), clipboard-write=(), gamepad=(), speaker-selection=()" 19 19 Referrer-Policy = "no-referrer-when-downgrade" 20 20 21 + [[headers]] 22 + for = "/.well-known/webfinger" 23 + [headers.values] 24 + Content-Type = "application/jrd+json; charset=utf-8" 25 + 21 26 [[redirects]] 22 27 from = "/post" 23 28 to = "/" 24 29 force = true 30 + 31 + [[redirects]] 32 + from = "/.well-known/webfinger" 33 + to = "/finger/:user.json" 34 + status = 200 35 + query = { resource = ":user" } 25 36 26 37 [[plugins]] 27 38 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 + }