Project

General

Profile

Wiki » History » Version 3

Gareth Eaton, 02/11/2023 03:36 PM

1 1 Gareth Eaton
h1. Build your own PRIVATE search engine - Using SearXNG
2
3
4
Setup a server running Ubuntu 20.04 or Debian 11
5
6
We was using Debian 11 in a Container hosted in Proxmox
7
8
Login as root and update.
9
10
<pre>
11
apt install && sudo apt upgrade -y
12
</pre>
13
14
Install Docker
15
16
<pre>
17
curl -fsSL https://get.docker.com -o get-docker.sh
18
sudo sh get-docker.sh
19
</pre>
20
21
Install docker-compose
22
23
<pre>
24
apt install docker-compose -y
25
</pre>
26
27
Now we can move to the directory where we want to install Searx and using git
28
NOTE: if you don’t have git installed install it – apt install git
29
30
<pre>
31
cd /usr/local
32
git clone https://github.com/searxng/searxng-docker.git
33
</pre>
34
35
Verify that it copied correctly in to your current directory
36
37
<pre>
38
ls
39
</pre>
40
41 2 Gareth Eaton
42 3 Gareth Eaton
!https://lightningcr.com/attachments/download/6/Docker-searxng.webp!
43 1 Gareth Eaton
44
cd searxng-docker