From 8a0ea3ea75dc519d5445df070a32f1e55987cc30 Mon Sep 17 00:00:00 2001 From: Jocomol Date: Thu, 7 Oct 2021 22:39:03 +0200 Subject: added radicale --- index.html | 1 + 1 file changed, 1 insertion(+) (limited to 'index.html') diff --git a/index.html b/index.html index b5e9663..f7bb287 100644 --- a/index.html +++ b/index.html @@ -76,6 +76,7 @@ img { border: none ;}
git
Version control software on your own server
Cgit
A hyperfast web frontend for git repositories
Gitea
A fully-featured git and issue tracking site
+
Radicale
A small but powerful calDav and cardDav server
IRC
Installing and managing a classic internet relay chat server
RSS Bridge
Creating RSS feeds for social media sites
Calibre
A library server
-- cgit v1.2.3 From ad1473870278334e59360eccfa9b520f4c00149b Mon Sep 17 00:00:00 2001 From: Adam Lawson Date: Mon, 16 May 2022 16:45:28 +0100 Subject: Added SearXNG Tutorial --- index.html | 1 + pix/searxng.svg | 19 ++++++++ searxng.html | 143 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 163 insertions(+) create mode 100644 pix/searxng.svg create mode 100644 searxng.html (limited to 'index.html') diff --git a/index.html b/index.html index 090f204..368847a 100644 --- a/index.html +++ b/index.html @@ -84,6 +84,7 @@ img { border: none ;}
Calibre
A library server
ItoopieI2P
Host your site on a private and peer-to-peer internet layer.
Tor
Host your site on private onion-routing.
+
SearXNG
Setting up a SearXNG metasearch engine.

Accepting Cryptocurrency Tips

diff --git a/pix/searxng.svg b/pix/searxng.svg new file mode 100644 index 0000000..417e7ed --- /dev/null +++ b/pix/searxng.svg @@ -0,0 +1,19 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + \ No newline at end of file diff --git a/searxng.html b/searxng.html new file mode 100644 index 0000000..3271899 --- /dev/null +++ b/searxng.html @@ -0,0 +1,143 @@ + + + + Setting up a public SearXNG instance – LandChad.net + + + + + + + +

Setting up a public SearXNG instance

+ +
+ SearXNG logo +

+ SearXNG is a free internet metasearch engine which aggregates results from more than 70 search services. + This guide sets up a working instance that can be accessed using a domain over HTTPS. + Features include: +

+
    +
  • Self hosted
  • +
  • No user tracking
  • +
  • No user profiling
  • +
  • About 70 supported search engines
  • +
  • Easy integration with any search engine
  • +
  • Cookies are not used by default
  • +
  • Secure, encrypted connections (HTTPS/SSL)
  • +
+ +

Installation

+ +

Install the required packages.

+ +
apt install git nginx -y
+ +

Open http and https ports.

+ +
iptables -I INPUT 6 -m state --state NEW -p tcp --dport 80 -j ACCEPT
+iptables -I INPUT 6 -m state --state NEW -p tcp --dport 443 -j ACCEPT
+netfilter-persistent save
+ufw allow 80
+ufw allow 443
+ +

Clone the SearXNG Repository.

+ +
git clone https://github.com/searxng/searxng searxng
+cd searxng
+ +

Installing SearXNG, Filtron and Morty.

+ +
./utils/searx.sh install all
+./utils/filtron.sh install all
+./utils/morty.sh install all
+ +

Check that both filtron and morty are running.

+ +
systemctl status filtron
+systemctl status morty
+ +

Configure Nginx

+ +

Delete the default site.

+ +
rm /etc/nginx/sites-enabled/default
+ +

Create a new file /etc/nginx/sites-available/searxng.conf and add the following:

+ +

+server {
+
+    # Listens on http
+    listen 80;
+    listen [::]:80;
+
+    # Your server name
+    server_name searx.example.org;
+     
+    # If you want to log user activity, comment these
+    access_log /dev/null;
+    error_log  /dev/null;
+                
+    # Searx reverse proxy
+    location / {
+            proxy_pass         http://127.0.0.1:4004/;
+                
+            proxy_set_header   Host             $host;
+            proxy_set_header   Connection       $http_connection;
+            proxy_set_header   X-Real-IP        $remote_addr;
+            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
+            proxy_set_header   X-Scheme         $scheme;
+            proxy_set_header   X-Script-Name    /searx;
+    }
+        
+    location /searx/static {
+            alias /usr/local/searx/searx-src/searx/static;
+    }
+        
+    # Morty reverse proxy
+    location /morty {
+            proxy_pass         http://127.0.0.1:3000/;
+               
+            proxy_set_header   Host             $host;
+            proxy_set_header   Connection       $http_connection;
+            proxy_set_header   X-Real-IP        $remote_addr;
+            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
+            proxy_set_header   X-Scheme         $scheme;
+    }
+}
+        
+ +

Now create a symbolic link to enable this site.

+ +
ln -s /etc/nginx/sites-available/searxng.conf /etc/nginx/sites-enabled/searxng.conf
+ +

Restart Nginx and SearXNG.

+ +
systemctl restart nginx
+service uwsgi restart searx
+ +

Configure HTTPS with Certbot

+ +

Install certbot.

+ +
apt install python3-certbot-nginx
+ +

Install a Let's Encrypt SSL certificate to Nginx and optionally let it configure HTTPS for you. + Detailed instructions and additional information.

+ +
certbot --nginx
+ +

SearXNG should now be available from your domain.

+ +

Configuration

+ +

You can change settings by editing /etc/searxng/settings.yml.

+ +

Contribution

+
  • Author: goshawk22 – website
  • +
    + + + -- cgit v1.2.3