Compare commits

...

2 commits

Author SHA1 Message Date
Jet Pham
f0b6a088f1
feat: add bluesky verification 2026-03-09 21:41:28 -07:00
Jet Pham
82f44fc0a8
fix: update caddy plugins hash 2026-03-09 21:40:22 -07:00

View file

@ -5,7 +5,7 @@
enable = true; enable = true;
package = pkgs.caddy.withPlugins { package = pkgs.caddy.withPlugins {
plugins = [ "github.com/mholt/caddy-ratelimit@v0.1.0" ]; plugins = [ "github.com/mholt/caddy-ratelimit@v0.1.0" ];
hash = "sha256-MBYvVqWB9GK3LSWigeb4NOgclGA2qZTSUyBJMdB635M="; hash = "sha256-kuqkLAMxBJvjNbgVCjrJDLFKUqMPPzguFupgXBFQYCA=";
}; };
email = "postmaster@extremist.software"; email = "postmaster@extremist.software";
globalConfig = '' globalConfig = ''
@ -34,6 +34,10 @@
header Content-Type "application/json" header Content-Type "application/json"
respond `{"admins": [{"matrix_id": "@jet:extremist.software","role": "admin"}]}` respond `{"admins": [{"matrix_id": "@jet:extremist.software","role": "admin"}]}`
} }
handle /.well-known/atproto-did {
header Content-Type "text/plain"
respond "did:plc:pvonud4oncr2m6en5f3jqrqk"
}
handle { handle {
redir https://jetpham.com{uri} redir https://jetpham.com{uri}
} }