How can you build your own search engine on top of the other search on the internet, simply by running your own searnxg installation.
Commands to set up your own searnxg setup
git clone https://github.com/searxng/searxng-do...
cd searxng-docker
edit
.env
Generate the secret key sed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml
edit
searxng/settings.yml
change from:
method: "GET"
general:
debug: false
instance_name: "Own search"
contact_url: false
enable_metrics: false
More settings:https://docs.searxng.org/admin/engine...
Run SearXNG in the background: docker-compose up -d
auto start searxng
cp searxng-docker.service.template searxng-docker.service
systemctl enable $(pwd)/searxng-docker.service
systemctl start searxng-docker.service