Spaces:
Sleeping
Sleeping
File size: 927 Bytes
31fa536 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | # Minimal SearXNG override — inherits all engine defaults, changes only what we need.
# See https://docs.searxng.org/admin/settings/index.html
use_default_settings: true
general:
instance_name: "Blog Post Generator Search"
# keep it internal; no public UI needed
enable_metrics: false
server:
# replaced at container start if left as the placeholder
secret_key: "ultrasecretkey_change_me"
bind_address: "127.0.0.1"
port: 8080
# single trusted caller (our own app on localhost) — no bot limiter
limiter: false
public_instance: false
image_proxy: false
search:
# JSON is required for our client; keep html for manual debugging
formats:
- html
- json
# be resilient: don't fail the whole query if one engine errors
autocomplete: ""
default_lang: "en"
ui:
static_use_hash: true
# Redis is not available in this single-container setup; SearXNG runs without it.
redis:
url: false
|