diff options
author | Alexandre Flament <alex@al-f.net> | 2021-12-19 11:01:50 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2022-02-02 09:15:59 +0100 |
commit | f79b0fce06936878d334a3927e2075f940a9ac46 (patch) | |
tree | 2fce19103233d25a9cd71136fdd66ddcf609b8e1 /docs | |
parent | c82b9c68d282a2f674632ce0e0720da85c64a1c4 (diff) | |
download | searxng-f79b0fce06936878d334a3927e2075f940a9ac46.tar.gz searxng-f79b0fce06936878d334a3927e2075f940a9ac46.zip |
[enh] limiter plugin
can replace filtron:
* rate limite the number of request per IP and per (IP, User-Agent)
* block some bots
use Redis
data stored in Redis never contains the IP addresses, only HMAC using the secret_key
Co-authored-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/src/searx.plugins.limiter.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/src/searx.plugins.limiter.rst b/docs/src/searx.plugins.limiter.rst new file mode 100644 index 000000000..4984cd37a --- /dev/null +++ b/docs/src/searx.plugins.limiter.rst @@ -0,0 +1,9 @@ +.. _limiter plugin: + +============== +Limiter Plugin +============== + +.. automodule:: searx.plugins.limiter + :members: + |