diff options
author | 2025-01-31 19:27:18 +0100 | |
---|---|---|
committer | 2025-01-31 19:27:18 +0100 | |
commit | a55bd6d2bd7b11aed653f4614836caed4103bec3 (patch) | |
tree | 40ddcac7b495307d3c08c482455f88e3598952b6 /docs/configuration/instance.md | |
parent | [chore] Add "object" uri to outgoing Accept + Reject messages (#3717) (diff) | |
download | gotosocial-a55bd6d2bd7b11aed653f4614836caed4103bec3.tar.xz |
[feature] Add `instance-stats-randomize` config option (#3718)
* [feature] Add `instance-stats-randomize` config option
* don't use cache (overkill)
Diffstat (limited to 'docs/configuration/instance.md')
-rw-r--r-- | docs/configuration/instance.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/configuration/instance.md b/docs/configuration/instance.md index cc793b7fe..fdaf324cf 100644 --- a/docs/configuration/instance.md +++ b/docs/configuration/instance.md @@ -138,4 +138,15 @@ instance-subscriptions-process-from: "23:00" # Examples: ["24h", "72h", "12h"] # Default: "24h" (once per day). instance-subscriptions-process-every: "24h" + +# Bool. Set this to true to randomize stats served at +# the /api/v1|v2/instance and /nodeinfo/2.0 endpoints. +# +# This can be useful when you don't want bots to obtain +# reliable information about the amount of users and +# statuses on your instance. +# +# Options: [true, false] +# Default: false +instance-stats-randomize: false ``` |