Zooid
This is a multi-tenant relay based on Khatru which implements a range of access controls. It's designed to be used with Flotilla as a community relay (complete with NIP 29 support), but it can also be used outside of a community context.
Architecture
A single zooid instance can run any number of "virtual" relays. The config directory can contain any number of configuration files, each of which represents a single virtual relay.
Environment
Zooid supports a few environment variables, which configure shared resources like the web server or sqlite database.
PORT- the port the server will listen on for all requests. Defaults to3334.DATA- the location of the directory for storing database files and media. Defaults to./data.
Configuration
Configuration files are written using toml. The name of the configuration file should be the hostname the relay serves, for example relay.example.com. Config files contain the following sections:
[self]
Contains information for populating the relay's nip11 document.
Required:
secret- the nostr secret key of the relay. Will be used to populate the relay's NIP 11selffield and sign generated events.
Optional:
name- the name of your relay.icon- an icon for your relay.pubkey- the public key of the relay owner. Does not affect access controls.description- your relay's description.
[groups]
Configures NIP 29 support.
enabled- whether NIP 29 is enabled.auto_join- whether relay members can joinopengroups without approval. Defaults totrue.auto_leave- whether relay members can leave groups without approval. Defaults totrue.
[management]
Configures NIP 86 support.
enabled- whether NIP 86 is enabled.methods- a list of NIP 86 relay management methods enabled for this relay.
[blossom]
Configures blossom support.
enabled- whether blossom is enabled.
[roles]
Defines roles that can be assigned to different users and attendant privileges. Each role is defined by a [roles.{role_name}] header and has the following options:
pubkeys- a list of nostr pubkeys this role is assigned to.can_invite- a boolean indicating whether this role can invite new members to the relay by requesting akind 28935claim. Defaults tofalse. See access requests for more details.
A special [roles.member] heading may be used to configure policies for all relay users (that is, pubkeys assigned to other roles, or who have redeemed an invite code).
Example
The below config file might be saved as ./config/my-relay.example.com in order to route requests from wss://my-relay.example.com to this virtual relay.
[self]
name = "My relay"
secret = "ce30b1831a4551f4cb7a984033c34ab96d8cf56ff50df9d0c27d9fa5422f2278"
[groups]
enabled = true
auto_join = false
[management]
enabled = true
methods = ["supportedmethods", "banpubkey", "allowpubkey"]
[blossom]
enabled = false
[roles.member]
can_invite = true
[roles.admin]
pubkeys = ["d9254d9898fd4728f7e2b32b87520221a50f6b8b97d935d7da2de8923988aa6d"]
Development
See justfile for defined commands.
TODO
- Create a "schema" abstraction to namespace tables
- This resource should be passed to event stores as well as claims, redemptions, etc
- We might need to create a custom blossom backend since the prefixes for the two stores will collide
- Watch configuration files and hot reload
- Free up resources after instance inactivity