summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2024-09-04 09:19:07 -0400
committerMark Felder <feld@feld.me>2024-09-04 09:22:58 -0400
commit427da7a99a30ebc7a7deb54e7704b5d8dffea199 (patch)
tree0db83eafc104c5459851170dc8b91241691dcbd3 /config
parentfbcfbde833b48f880fd4f55314e0d2a51186701b (diff)
downloadpleroma-427da7a99a30ebc7a7deb54e7704b5d8dffea199.tar.gz
pleroma-427da7a99a30ebc7a7deb54e7704b5d8dffea199.zip
Rate Limit the OAuth App spam
Diffstat (limited to 'config')
-rw-r--r--config/config.exs1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs
index ad6b1cb94..a4fedff45 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -711,6 +711,7 @@ config :pleroma, :rate_limit,
timeline: {500, 3},
search: [{1000, 10}, {1000, 30}],
app_account_creation: {1_800_000, 25},
+ oauth_app_creation: {900_000, 5},
relations_actions: {10_000, 10},
relation_id_action: {60_000, 2},
statuses_actions: {10_000, 15},