diff options
Diffstat (limited to 'searx/plugins/limiter.py')
| -rw-r--r-- | searx/plugins/limiter.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/plugins/limiter.py b/searx/plugins/limiter.py index 6accf2c1c..c3ec64283 100644 --- a/searx/plugins/limiter.py +++ b/searx/plugins/limiter.py @@ -3,6 +3,10 @@ # pyright: basic """Some bot protection / rate limitation +To monitore rate limits and protect privacy the IP addresses are getting stored +with a hash so the limiter plugin knows who to block. A redis database is +needed to store the hash values. + Enable the plugin in ``settings.yml``: - ``server.limiter: true`` |