diff options
author | Elizabeth (Lizzy) Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-09 13:29:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 13:29:43 -0600 |
commit | 750531368b668b6a2eb465d58ef1ffadd9b0ca3d (patch) | |
tree | 0164c8e233f47e298302b64621472520d6b9ab4a | |
parent | f6fbffab85acf256c49caed991314058c931cb8f (diff) | |
download | chessh-750531368b668b6a2eb465d58ef1ffadd9b0ca3d.tar.gz chessh-750531368b668b6a2eb465d58ef1ffadd9b0ca3d.zip |
be more lax with the ssh message rate limit
-rw-r--r-- | config/prod.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/prod.exs b/config/prod.exs index 4f80997..5a73fd3 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -8,5 +8,5 @@ config :chessh, RateLimits, jail_timeout_ms: 5 * 60 * 1000, jail_attempt_threshold: 15, max_concurrent_user_sessions: 5, - player_session_message_burst_ms: 500, - player_session_message_burst_rate: 8 + player_session_message_burst_ms: 400, + player_session_message_burst_rate: 11 |