Source to relay.fedi.buzz: relay the streaming API of Mastodon instances
Go to file
2023-11-26 20:17:28 +01:00
src actor: implement LanguageRelay 2023-11-26 20:17:28 +01: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.lock: update 2023-11-26 20:17:28 +01:00
Cargo.toml endpoint: pool and cache remote_actor() fetch 2023-10-28 00:48:40 +02:00
config.yaml add RedisConfig.password_file 2023-10-12 22:09:43 +02:00
flake.lock flake.lock: Update 2023-11-26 02:23:48 +01:00
flake.nix flake.nix: fix meta.description 2023-05-14 23:33:22 +02:00
LICENSE LICENSE: add 2023-01-11 19:39:39 +01:00
nixos-module.nix nixos-module: mangle case in redis settings 2023-10-12 22:51:54 +02:00
README.md README: init 2023-01-11 19:41:48 +01: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

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.