Initial resurrection kit — 81 scripts, 62 references, configs, systemd units, crons, Docker compose files, Caddy config, master README

This commit is contained in:
root
2026-07-15 17:45:36 -04:00
commit ae056eaf83
197 changed files with 26127 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
version: '3.8'
services:
searxng:
image: searxng/searxng:latest
container_name: searxng
restart: always
ports:
- "127.0.0.1:8888:8080"
volumes:
- ./searxng-data:/etc/searxng:rw
- ./searxng-themes:/usr/local/searxng/searx/static/themes:rw
environment:
- SEARXNG_BASE_URL=http://localhost:8080
- SEARXNG_SECRET_KEY=${SEARXNG_SECRET_KEY:-changeme}
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"