rashadphz / farfalle

🔍 AI search engine - self-host with local or cloud LLMs
https://www.farfalle.dev/
Apache License 2.0
2.21k stars 166 forks source link

500: 500: There was an error while searching. #30

Closed Manu-Devloo closed 1 month ago

Manu-Devloo commented 1 month ago

when i try searching with searxng i get

image

.env SEARCH_PROVIDER=searxng

compose file: GNU nano 7.2 docker-compose.dev.yaml
services: backend: build: context: . dockerfile: ./src/backend/Dockerfile restart: always ports:

networks: searxng:

Red5d commented 1 month ago

I had this error too and fixed it by removing the separate searxng network so that searxng is on the same network with backend and frontend services, and then I set my SEARXNG_BASE_URL=http://searxng:8080 and also added a Redis server (not sure if that's required or not).

Manu-Devloo commented 1 month ago

thanks, that worked for me. I did not need a redis database.