This commit is contained in:
parent
1d725aae64
commit
ffad5c8453
2 changed files with 28 additions and 1 deletions
26
.well-known/did.json
Normal file
26
.well-known/did.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"@context": [
|
||||
"https://www.w3.org/ns/did/v1",
|
||||
"https://w3id.org/security/multikey/v1",
|
||||
"https://w3id.org/security/suites/secp256k1-2019/v1"
|
||||
],
|
||||
"id": "did:web:synth.download",
|
||||
"alsoKnownAs": [
|
||||
"at://synth.download"
|
||||
],
|
||||
"verificationMethod": [
|
||||
{
|
||||
"id": "did:web:synth.download#atproto",
|
||||
"type": "Multikey",
|
||||
"controller": "did:web:synth.download",
|
||||
"publicKeyMultibase": "zQ3shbp4LY2HNnhzHyZF3zswZjux2TMoSXiyNWfr7SxCAdD9k"
|
||||
}
|
||||
],
|
||||
"service": [
|
||||
{
|
||||
"id": "#atproto_pds",
|
||||
"type": "AtprotoPersonalDataServer",
|
||||
"serviceEndpoint": "https://pds.synth.download"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -6,6 +6,7 @@ import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
|
|||
export default function(eleventyConfig) {
|
||||
eleventyConfig.addPassthroughCopy({ "sneexy/notebook/": "~sneexy/notebook/" }); // notebook page generated by quartz seperately - see https://forged.synth.download/sneexy/notebook
|
||||
eleventyConfig.addPassthroughCopy("custard.html");
|
||||
eleventyConfig.addPassthroughCopy(".well-known/"); // static identity stuff
|
||||
eleventyConfig.addPlugin(eleventyNavigationPlugin);
|
||||
eleventyConfig.addPlugin(syntaxHighlight);
|
||||
eleventyConfig.addPassthroughCopy("assets/");
|
||||
|
|
@ -22,4 +23,4 @@ export default function(eleventyConfig) {
|
|||
const minified = await minify(code);
|
||||
return minified.code;
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue