Source to relay.fedi.buzz: relay the streaming API of Mastodon instances
Find a file
2024-10-15 23:23:36 +02:00
.github/workflows Update actions/checkout action to v4 2024-07-24 02:54:18 +00:00
src update dependency redis from 0.25.4 to 0.27.2 2024-10-04 01:18:29 +02:00
static static: repair HTML 2023-10-27 01:53:45 +02:00
.gitignore README: init 2023-01-11 19:41:48 +01:00
Cargo.lock Cargo.toml: update metrics dependencies 2024-10-15 23:23:36 +02:00
Cargo.toml Cargo.toml: update metrics dependencies 2024-10-15 23:23:36 +02:00
config.yaml add RedisConfig.password_file 2023-10-12 22:09:43 +02:00
flake.lock flake.lock: Update 2024-10-15 23:23:36 +02:00
flake.nix flake.nix: add cargo-outdated to devShell 2024-06-16 00:42:20 +02:00
INSTALL-UBUNTU.md tweaked wording for proxy section 2024-04-11 02:30:31 -05:00
LICENSE LICENSE: add 2023-01-11 19:39:39 +01:00
nixos-module.nix Remove aliases, cleanup 2024-10-04 02:09:52 +02:00
README.md README: link Ubuntu howto post 2024-04-09 23:37:45 +02:00
renovate.json Add renovate.json 2024-07-18 01:04:37 +00:00

buzzrelay

A follow-only ActivityPub relay that connects to Mastodon's Streaming API.

You don't need to run this yourself, just use the instance at relay.fedi.buzz.

Setup

See also: Notes on an setting up a fediverse relay with FediBuzz on an Ubuntu server.

Build

NixOS/Flakes users are in luck: not only does this build, it also comes with a NixOS module!

Anyone else installs a Rust toolchain to build with:

cargo build --release

Generate signing keypair

ActivityPub messages are signed using RSA keys. Generate a keypair first:

openssl genrsa -out private-key.pem 4096
openssl rsa -in private-key.pem -pubout -out public-key.pem

Let your config.yaml point there.

Database

Create a PostgreSQL database and user, set them in your config.yaml.

The program will create its schema on start.

Ethics

Should everyone connect to the streaming API of the big popular Mastodon instances?

Once these connections become a problem, they may become disallowed, resulting in problems for everyone. That's why fedi.buzz serves the firehose feed through the streaming API, too.

You can let this service use fedi.buzz as listed in the default config.yaml.