Compare commits

..

No commits in common. "0f584b2fedf562b0be81c3b95f12595f116e0552" and "dc82e99a88daa912cec060eab62c8056054b5a7a" have entirely different histories.

2 changed files with 4 additions and 13 deletions

View file

@ -26,20 +26,11 @@ export const config = ngx("", [
]),
ngx("location = /hi-res-bnuy.png", ["root /srv/www/pds.bun.how"]),
ngx("location = /", ["root /srv/www/pds.bun.how", "index hi-res-bnuy.png"]),
ngx("location = /xrpc/app.bsky.ageassurance.getState", [
ngx("location = /xrpc/app.bsky.unspecced.getAgeAssuranceState", [
"default_type application/json",
`add_header access-control-allow-headers "authorization,dpop,atproto-accept-labelers,atproto-proxy" always`,
`add_header access-control-allow-origin "*" always`,
`return 200 '${JSON.stringify({
"state": {
"lastInitiatedAt": "2025-07-25T01:40:38.406Z",
"status": "assured",
"access": "full"
},
"metadata": {
"accountCreatedAt": "2024-10-17T13:55:48.833Z"
}
})}'`
`return 200 '{"status": "assured", "lastInitiatedAt": "2025-07-25T05:54:31.995Z"}'`
]),
]),
]);

View file

@ -6,8 +6,8 @@
"main": "index.js",
"license": "MIT",
"dependencies": {
"@atproto/common": "^0.5.3",
"@atproto/pds": "^0.4.193",
"@atproto/common": "^0.4.11",
"@atproto/pds": "^0.4.185",
"dotenv": "^16.4.7",
"express": "^4.21.2"
},