mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 16:29:24 +02:00
- Remove :ro flag from volume mounts (SearXNG needs write access) - Simplify limiter.toml to match current SearXNG schema - Disable link_token for API usage without browser
18 lines
438 B
TOML
18 lines
438 B
TOML
# SearXNG Rate Limiter Configuration
|
|
# Documentation: https://docs.searxng.org/admin/settings/limiter.html
|
|
|
|
[botdetection.ip_limit]
|
|
# Disable link token for API usage
|
|
link_token = false
|
|
|
|
[botdetection.ip_lists]
|
|
# Allow internal Docker network IPs (no rate limiting for internal services)
|
|
pass_ip = [
|
|
# Docker internal networks
|
|
"172.16.0.0/12",
|
|
"192.168.0.0/16",
|
|
"10.0.0.0/8",
|
|
# Localhost
|
|
"127.0.0.1",
|
|
"::1",
|
|
]
|