add webfinger
This commit is contained in:
parent
07b6ff7d47
commit
ad12d17f99
2 changed files with 31 additions and 0 deletions
|
@ -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({
|
||||
|
|
30
src/.well-known/webfinger
Normal file
30
src/.well-known/webfinger
Normal file
|
@ -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}"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue