Wiki » History » Revision 3
Revision 2 (Gareth Eaton, 02/11/2023 03:35 PM) → Revision 3/4 (Gareth Eaton, 02/11/2023 03:36 PM)
h1. Build your own PRIVATE search engine - Using SearXNG Setup a server running Ubuntu 20.04 or Debian 11 We was using Debian 11 in a Container hosted in Proxmox Login as root and update. <pre> apt install && sudo apt upgrade -y </pre> Install Docker <pre> curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh </pre> Install docker-compose <pre> apt install docker-compose -y </pre> Now we can move to the directory where we want to install Searx and using git NOTE: if you don’t have git installed install it – apt install git <pre> cd /usr/local git clone https://github.com/searxng/searxng-docker.git </pre> Verify that it copied correctly in to your current directory <pre> ls </pre> !https://lightningcr.com/attachments/download/6/Docker-searxng.webp! !Docker-searxng.webp! cd searxng-docker