Self-hosted Docker Compose stack for DGX Spark (ARM64/aarch64, CPU-only): - SearXNG on port 8889 with JSON API enabled, rate limiting off - Firecrawl (built from local source) on port 3002, no API key required - HHEM API (FastAPI + vectara/hallucination_evaluation_model) on port 8881 - Portainer stack YAML using dgx_net external network - build-images.sh to pre-build local images before Portainer deploy - HF model cache bind-mounted from /home/sparky/LLMs/huggingface Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
94 lines
1.7 KiB
YAML
94 lines
1.7 KiB
YAML
general:
|
|
debug: false
|
|
instance_name: "SearXNG (local)"
|
|
enable_metrics: false
|
|
|
|
search:
|
|
safe_search: 0
|
|
autocomplete: ""
|
|
default_lang: "auto"
|
|
ban_time_on_fail: 5
|
|
max_ban_time_on_fail: 120
|
|
|
|
# JSON format is required for agent/API access
|
|
formats:
|
|
- html
|
|
- json
|
|
|
|
server:
|
|
port: 8080
|
|
bind_address: "0.0.0.0"
|
|
base_url: false
|
|
# Disable rate limiter so local agents (n8n, Firecrawl) can query freely
|
|
limiter: false
|
|
public_instance: false
|
|
# Change this to any random 32+ character string
|
|
secret_key: "n8n-ai-tools-searxng-secret-key-dgx-spark-local-2024"
|
|
image_proxy: false
|
|
|
|
ui:
|
|
static_use_hash: true
|
|
default_locale: ""
|
|
query_in_title: false
|
|
infinite_scroll: false
|
|
center_alignment: false
|
|
default_theme: simple
|
|
theme_args:
|
|
simple_style: auto
|
|
|
|
# Outgoing HTTP settings — no proxy needed on local network
|
|
outgoing:
|
|
request_timeout: 15.0
|
|
max_request_timeout: 30.0
|
|
useragent_suffix: ""
|
|
pool_connections: 100
|
|
pool_maxsize: 20
|
|
enable_http2: true
|
|
|
|
# Enabled engines — good balance of quality and reliability
|
|
engines:
|
|
- name: bing
|
|
engine: bing
|
|
shortcut: b
|
|
disabled: false
|
|
|
|
- name: duckduckgo
|
|
engine: duckduckgo
|
|
shortcut: d
|
|
disabled: false
|
|
|
|
- name: google
|
|
engine: google
|
|
shortcut: g
|
|
disabled: false
|
|
|
|
- name: brave
|
|
engine: brave
|
|
shortcut: br
|
|
disabled: false
|
|
|
|
- name: wikipedia
|
|
engine: wikipedia
|
|
shortcut: wp
|
|
disabled: false
|
|
|
|
- name: github
|
|
engine: github
|
|
shortcut: gh
|
|
disabled: true
|
|
|
|
- name: arxiv
|
|
engine: arxiv
|
|
shortcut: ax
|
|
disabled: true
|
|
|
|
categories_as_tabs:
|
|
general:
|
|
engines:
|
|
- bing
|
|
- duckduckgo
|
|
- google
|
|
- brave
|
|
language: all
|
|
safe_search: 0
|