Initial commit: Research Bridge API with Podman support
This commit is contained in:
18
config/searxng-docker-compose.yml
Normal file
18
config/searxng-docker-compose.yml
Normal 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
|
||||
45
config/searxng-settings.yml
Normal file
45
config/searxng-settings.yml
Normal 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
|
||||
Reference in New Issue
Block a user