**Add new test script, agent modifications, and SearXNG integration updates**

This commit is contained in:
geoffsee
2025-05-27 19:10:33 -04:00
parent bb99e652f9
commit 29f70146d2
24 changed files with 2538 additions and 38 deletions

View File

@@ -0,0 +1,15 @@
FROM searxng/searxng:2025.3.31-08885d061
RUN mkdir -p /etc/searxng
RUN apk upgrade && apk add uwsgi-router_basicauth
COPY settings.yml /etc/searxng/settings.yml
COPY uwsgi.ini /etc/searxng/uwsgi.ini
COPY auth-file /etc/searxng/auth-file
ENV INSTANCE_NAME=searxng \
SEARXNG_SETTINGS_PATH=/etc/searxng/settings.yml \
UWSGI_SETTINGS_PATH=/etc/searxng/uwsgi.ini
CMD ["python3", "-m", "searxng"]