Static ActivityPub actor whose Notes have multiple types.
Find a file
2024-03-25 20:57:39 +03:00
www Add actor files and a README to explain it all 2024-03-25 20:57:39 +03:00
README.md Add actor files and a README to explain it all 2024-03-25 20:57:39 +03:00

aptest.debiania.in.ua

This is a static ActivityPub actor whose Notes have multiple types. I wrote this actor to demonstrate my point in this BookWyrm issue, and then to file a bug in Pleroma. There was also the same bug in Misskey which was promptly fixed.

This was served by Nginx with the following config in the server block:

location /notes {
    default_type application/activity+json;
}

location /actor {
    default_type application/activity+json;
}

location /.well-known/host-meta {
    default_type application/xrd+xml;
}

location /.well-known/webfinger {
    default_type application/jrd+json;
}

This actor used to be available as actor@aptest.debiania.in.ua, but I moved away from that domain and took the actor down. Feel free to set up your own copy (don't forget to change the domain name or it won't work!)