Mercurial > prosody-modules
view mod_c2s_conn_throttle/README.markdown @ 5953:eef6cb08f9e7
mod_rest: Fix to allow underscores in path of HTTP GET to iq-get mapping
A request like
GET /rest/upload_request/{to}
would fail because the pattern would not the underscore in "upload_request"
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 19 Aug 2024 18:39:22 +0200 |
parents | 4d73a1a6ba68 |
children |
line wrap: on
line source
--- labels: - 'Stage-Stable' summary: c2s connections throttling module ... Introduction ============ This module allows to throttle those client connections which exceed a n\*seconds limit. Usage ===== Copy the module folder into your prosody modules directory. Place the module between your enabled modules either into the global or a vhost section. Optional configuration directives: ``` {.lua} cthrottler_logins_count = 3 -- number of login attempts allowed, default is 3 cthrottler_time = 60 -- .. in number of seconds, default is 60 ``` Info ==== - 0.8, works - 0.9, works