1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>My own private search engine</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
</header>
<main>
<article>
<h2>My own private search engine</h2>
<h3>2026-06-02</h3>
<h4>Messing around with a bad back in stormy weather</h4>
<p>
I made a bad movement in the shower this morning and made my back
scream again, so no woodworking today. One of the benefits of
retirement is that I get to choose the days activities.
</p>
<p>
I had installed
<a href="https://github.com/searxng/searxng">SearxNG</a> previously
more than two years ago, but as I'm constantly fiddling it wound up in
the bin.
</p>
<p>
Convalescing in the armchair I saw that my current vps is mostly idle
running just snac2, my blog, xmpp, gophernicus and other bits, so I
reinstalled SearxNG.
</p>
<p>
It's fast, responsive, and private. I have it behind an Nginx reverse
proxy, and only accepting my own IP address for now.
</p>
<p>
Another thing I did was to play around with the
<a href="https://getfresh.dev/">Fresh editor</a>. Like Micro, it can
be configured to use prettier, the code formatter. Ok, it's written in
Rust, but it is a nice editor with a retro computing vibe. It won't
replace Micro as my daily editor, but if I ever need a TUI IDE it
could be a good choice.
</p>
</article>
</main>
<footer>
<p>§</p>
</footer>
</body>
</html>
|