Project

General

Profile

Wiki » History » Revision 2

Revision 1 (Gareth Eaton, 02/11/2023 03:34 PM) → Revision 2/4 (Gareth Eaton, 02/11/2023 03:35 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> 


 

 !Docker-searxng.webp! 

 cd searxng-docker