diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-08-26 20:36:44 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-08-26 20:36:44 +0700 |
commit | 66c1966688e9bb24ce1703217b89d8ec390b6095 (patch) | |
tree | c93ba1ba5ca9131e33e8fef6384ee940ad3594e4 /config | |
parent | 6dc24422dc403663f6385272f071e2223c24b2ce (diff) | |
download | pleroma-66c1966688e9bb24ce1703217b89d8ec390b6095.tar.gz pleroma-66c1966688e9bb24ce1703217b89d8ec390b6095.zip |
Disable rate limiter by default
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/config/config.exs b/config/config.exs index e58454d68..f630771a3 100644 --- a/config/config.exs +++ b/config/config.exs @@ -556,16 +556,7 @@ config :pleroma, :env, Mix.env() config :http_signatures, adapter: Pleroma.Signature -config :pleroma, :rate_limit, - search: [{1000, 10}, {1000, 30}], - app_account_creation: {1_800_000, 25}, - relations_actions: {10_000, 10}, - relation_id_action: {60_000, 2}, - statuses_actions: {10_000, 15}, - status_id_action: {60_000, 3}, - password_reset: {1_800_000, 5}, - account_confirmation_resend: {8_640_000, 5}, - ap_routes: {60_000, 15} +config :pleroma, :rate_limit, nil config :pleroma, Pleroma.ActivityExpiration, enabled: true |