Initial commit: Research Bridge API with Podman support

This commit is contained in:
Henry
2026-03-14 12:45:36 +00:00
commit 1130305e71
29 changed files with 2451 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
searxng:
image: docker.io/searxng/searxng:latest
container_name: searxng-research-bridge
ports:
- "8080:8080"
volumes:
- ./searxng-settings.yml:/etc/searxng/settings.yml
environment:
- SEARXNG_BASE_URL=http://localhost:8080/
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8080/healthz"]
interval: 30s
timeout: 10s
retries: 3

View File

@@ -0,0 +1,45 @@
# SearXNG Settings
# See: https://docs.searxng.org/admin/settings/settings.html
use_default_settings: true
server:
bind_address: "0.0.0.0"
port: 8080
secret_key: "research-bridge-secret-key-change-in-production"
limiter: false
search:
safe_search: 0
autocomplete: 'duckduckgo'
default_lang: 'en'
formats:
- html
- json
engines:
- name: google
engine: google
shortcut: go
disabled: false
- name: bing
engine: bing
shortcut: bi
disabled: false
- name: duckduckgo
engine: duckduckgo
shortcut: ddg
disabled: false
- name: google news
engine: google_news
shortcut: gon
disabled: false
ui:
static_path: ""
templates_path: ""
default_theme: simple
query_in_title: true