mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
doc/akkoma: fix mistake in manual (#538772)
This commit is contained in:
@@ -27,7 +27,7 @@ be run behind a HTTP proxy on `fediverse.example.com`.
|
||||
name = "My Akkoma instance";
|
||||
description = "More detailed description";
|
||||
email = "admin@example.com";
|
||||
registration_open = false;
|
||||
registrations_open = false;
|
||||
};
|
||||
|
||||
"Pleroma.Web.Endpoint" = {
|
||||
@@ -221,17 +221,28 @@ of the fediverse and providing a pleasant experience to the users of an instance
|
||||
|
||||
":mrf_simple" = {
|
||||
# Tag all media as sensitive
|
||||
media_nsfw = mkMap { "nsfw.weird.kinky" = "Untagged NSFW content"; };
|
||||
media_nsfw = map mkTuple [
|
||||
[
|
||||
"nsfw.weird.kinky"
|
||||
"Untagged NSFW content"
|
||||
]
|
||||
];
|
||||
|
||||
# Reject all activities except deletes
|
||||
reject = mkMap {
|
||||
"kiwifarms.cc" = "Persistent harassment of users, no moderation";
|
||||
};
|
||||
reject = map mkTuple [
|
||||
[
|
||||
"kiwifarms.cc"
|
||||
"Persistent harassment of users, no moderation"
|
||||
]
|
||||
];
|
||||
|
||||
# Force posts to be visible by followers only
|
||||
followers_only = mkMap {
|
||||
"beta.birdsite.live" = "Avoid polluting timelines with Twitter posts";
|
||||
};
|
||||
followers_only = map mkTuple [
|
||||
[
|
||||
"beta.birdsite.live"
|
||||
"Avoid polluting timelines with Twitter posts"
|
||||
]
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user