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.
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.
[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:
pubkey- a list of nostr pubkeys this role is assigned to.nip86_methods- a list of NIP 86 relay management methods enabled for this role. Defaults 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).
[data]
Contains information related to data persistence.
sqliteis the location of the sqlite database file. Defaults to./data/{my-relay}.db.mediais the name of the directory for storing blossom files. Defaults to./media/{my-relay}.
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"
[roles]
[roles.member]
can_invite = true
[roles.admin]
nip86_methods = ["supportedmethods", "banpubkey", "allowpubkey"]
pubkeys = ["d9254d9898fd4728f7e2b32b87520221a50f6b8b97d935d7da2de8923988aa6d"]
[groups]
enabled = true
auto_join = false
Development
See justfile for defined commands.