2020-12-02 09:55:37 +11:00
|
|
|
# A simplistic and secure Gemini server
|
|
|
|
|
2020-12-04 08:59:39 +11:00
|
|
|
**Vger** is a gemini server supporting chroot, virtualhosts, default
|
|
|
|
language choice and MIME types detection.
|
2020-12-03 01:31:21 +11:00
|
|
|
|
2020-12-02 09:55:37 +11:00
|
|
|
**Vger** design is relying on inetd and a daemon to take care of
|
|
|
|
TLS. The idea is to delegate TLS and network to daemons which
|
|
|
|
proved doing it correctly, so vger takes its request from stdin and
|
|
|
|
output the result to stdout.
|
|
|
|
|
|
|
|
The average setup should look like:
|
|
|
|
|
|
|
|
```
|
|
|
|
client
|
|
|
|
↓ TCP request on port 1965
|
|
|
|
relayd or haproxy
|
|
|
|
or stunnel on inetd
|
|
|
|
↓ TCP request to a port of choice on localhost
|
|
|
|
vger on inetd
|
|
|
|
```
|
|
|
|
|
|
|
|
**Vger** is perfectly secure if run on **OpenBSD**, using `unveil()`
|
|
|
|
the filesystem access is restricted to one directory (default to
|
|
|
|
`/var/gemini/`) and with `pledge()` only systems calls related to
|
|
|
|
reading files and reading input/output are allowed.
|
|
|
|
|
|
|
|
|
|
|
|
# Get the sources
|
|
|
|
|
|
|
|
```
|
2020-12-02 10:01:32 +11:00
|
|
|
git clone https://tildegit.org/solene/vger.git
|
2020-12-02 09:55:37 +11:00
|
|
|
```
|
|
|
|
|
|
|
|
# Running tests
|
|
|
|
|
|
|
|
**Vger** comes with a test suite you can use with `make test`.
|
|
|
|
|
|
|
|
Some files under `/var/gemini/` are required to test the code path
|
|
|
|
without a `-d` parameter.
|
|
|
|
|
|
|
|
|
2020-12-03 04:07:10 +11:00
|
|
|
# Command line parameters
|
|
|
|
|
|
|
|
**Vger** has a few parameters you can use in inetd configuration.
|
|
|
|
|
2020-12-04 08:59:39 +11:00
|
|
|
- `-d PATH`: use `PATH` as the data directory to serve files from. Default is `/var/gemini`
|
2020-12-03 04:07:10 +11:00
|
|
|
- `-l LANG`: change the language in the status return code. Default is `en`
|
|
|
|
- `-v`: enable virtualhost support, the hostname in the query will be considered as a directory name.
|
2020-12-04 08:59:39 +11:00
|
|
|
- `-u username`: enable chroot to the data directory and drop privileges to `username`.
|
2020-12-03 04:07:10 +11:00
|
|
|
|
|
|
|
|
2020-12-02 09:55:37 +11:00
|
|
|
# How to configure Vger using relayd and inetd
|
|
|
|
|
|
|
|
Create directory `/var/gemini/` (I'd allow this to be configured
|
|
|
|
later), files will be served from there.
|
|
|
|
|
|
|
|
Add this line to inetd.conf:
|
|
|
|
|
|
|
|
```
|
|
|
|
11965 stream tcp nowait gemini_user /usr/local/bin/vger vger
|
|
|
|
```
|
|
|
|
|
|
|
|
Add this to relayd.conf
|
|
|
|
```
|
|
|
|
log connection
|
|
|
|
relay "gemini" {
|
2020-12-04 08:18:26 +11:00
|
|
|
listen on hostname.example port 1965 tls
|
2020-12-02 09:55:37 +11:00
|
|
|
forward to 127.0.0.1 port 11965
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Make links to the certificates and key files according to relayd.conf documentation
|
|
|
|
```
|
2020-12-04 08:18:26 +11:00
|
|
|
# ln -s /etc/ssl/acme/cert.pem /etc/ssl/hostname.example\:1965.crt
|
|
|
|
# ln -s /etc/ssl/acme/private/privkey.pem /etc/ssl/private/hostname.example\:1965.key
|
2020-12-02 09:55:37 +11:00
|
|
|
```
|
|
|
|
|
|
|
|
Enable inetd and relayd and start them:
|
|
|
|
```
|
|
|
|
# rcctl enable relayd inetd
|
|
|
|
# rcctl start relayd inetd
|
|
|
|
```
|
|
|
|
|
|
|
|
# Todo
|
|
|
|
|
|
|
|
- add syslog traces
|
2020-12-04 08:08:29 +11:00
|
|
|
- maybe a chroot() for non OpenBSD systems.
|