Betula website

Version 1.2.0

Betula 1.2.0 is the third release of Betula. It was released on 2024-01-29, almost three months after v1.1.0.

See the installation guide.

New

Note for nginx users

If you want to join the Fediverse with your Betula and you use nginx as a reverse proxy, update your configuration to pass the Host field verbatim to Betula. It is required for HTTP signature verification.

So, your server configuration should look something like this:

server {
	server_name links.example.org;
	client_max_body_size 3M;
	location / {
		proxy_pass http://127.0.0.1:1738;
		proxy_set_header Host $host; # NEW LINE
	}
		
	# Certbot configuration is probably somewhere here.
}

Developers

I also want to thank Grishka of Smithereen for ActivityPub advice, Tedu of Honk for the httpsig library, Andy Piper for the ongoing work on Postmarks compatibility.

Join us for the next release!