Hacker News new | ask | show | jobs
by prophesi 558 days ago
How much maintenance does running a private instance take, and would you say it should be fine to run from your own IP? I've been using Kagi for ages, but I wouldn't mind a fallback that does better than DDG.
1 comments

Not much? I mean, I set it up initially to use as an LLM search tool for agents. That required me to use a specific version of SearXNG due to a JSON bug. My exact docker command is here:

    docker run -d -p 9017:8080 --name searxng_data -v "${PWD}/searxng_data:/etc/searxng" -e "BASE_URL=http://localhost:9017/" searxng/searxng:2024.8.31-769b2ed03

I run this from the directory where I want to store the data on windows (hence the weird PWD thing). I also use cloudflare tunnels and have the internet facing website, https://sear.mydomain.com, pointed at http//localhost:9017. I set up all my cloudflare tunnels with email authentication. My token lasts a month (but is configurable to whatever time frame you like). My traffic is strictly mine, so it seems to be working ok.

Its basically no maintenance after this setup. I can mess with all the settings (except results format) from the main interface.

I appreciate the writeup! I'll likely go down this rabbit hole soon.