HAVEN (High Availability Vault for Events on Nostr) is the most sovereign personal relay for the Nostr protocol, for storing and backing up sensitive notes like eCash, private chats, and drafts. It is a relay that is not so dumb, with features like web of trust, whitelisting, blacklisting, JSONL backup / restore (including periodic backups to the cloud), blastr note to others relays, and importing your old notes from other relays. It even includes its own blossom media server!
Private Relay: This relay is only accessible by the owner of the relay and whitelisted npubs. It is used for drafts, ecash, and other private notes that nobody else can read or write to. It is protected by Auth.
Chat Relay: This relay is used to contact the owner of the relay and whitelisted npubs by DM. Only people in the web of trust can interact with this relay, protected by Auth. It only accepts encrypted DMs and group chat kinds.
Inbox Relay: This relay is where the owner of the relay and whitelisted npubs reads from. Send your zaps, reactions, and replies to this relay when you're tagging the owner or one of the whitelisted npubs. You can also pull notes from this relay if you want notes where the owner or whitelisted npub are tagged. This relay automatically pulls notes from other relays. Only notes where the owner or whitelisted npubs are tagged will be accepted to this relay.
Outbox Relay: This relay is where the owner's and whitelisted npubs notes all live and are publicly accessible. You can import all your old notes to this relay. All notes sent to this relay are blasted to other relays. Only the owner and whitelisted npubs can send to this relay, but anyone can read.
Blossom Media Server: This relay also includes a media server for hosting images and videos. You can upload images and videos to this relay and get a link to share them. Only the relay owner and whitelisted npubs can upload to this relay, but anyone can view the images and videos.
Web of Trust: Protected from DM and Inbox spam by using a Web of Trust (WoT). See the Web of Trust Documentation for more details.
Access Control: Whitelist and blacklist npubs. See the Access Control Documentation for more details.
Inbox Relay: Notes are pulled from other relays and stored in the inbox relay.
Blastr: Notes sent to the outbox are also blasted to other relays.
Import Old Notes: Import your old notes and notes you're tagged in from other relays.
Backup/Recover: It is your data, manually export or import data JSONL at any time. Set periodic backups to the cloud for easy recovery. See Backup Documentation for more details.
The easiest way to get started with Haven is to download pre-built binaries from our GitHub releases page:
- Download the appropriate binary for your system from the releases page
- Verify the download (optional): See our Verification Documentation for instructions on how to verify the authenticity of the binaries using GPG signatures and checksums.
- Create a haven directory and extract the downloaded file:
mkdir haven # For Linux/macOS: tar -xzf haven_[Platform]_[Architecture].tar.gz -C haven # For Windows: extract the .zip file to this directory
If you prefer to build Haven from source or need to customize the build, please see the BuildDocumentation.
Check out some of the external community-built tools for managing Haven relays:
- Haven Docker: A lightweight Docker Compose setup with a TUI for configuration and management
- HAVEN For Mac: A user-friendly macOS application for managing your Haven relay with a native GUI and a ton of extra features
- Haven Start9 Wrapper: A Tor-only Start9 wrapper for Haven with its own Dashboard and Web UI
- HAVEN Kit: Simple configuration tool to set up a HAVEN Nostr relay in Umbrel Docker or Podman with just a few clicks
If you have built a Haven relay management tool that you would like to share, please open a PR to add it to this list!
Important
The Haven team does not officially support the tools listed above. They are community-built and maintained by third parties. Please refer to the respective repositories for installation instructions, documentation, and support. If you encounter any issues with these tools, please open an issue in their respective repositories.
Follow these steps to get the Haven Relay running on your local machine (after installing via binary download or building from source):
You'll need to create an .env file based on the example provided.
cp .env.example .envOpen the .env file and set the necessary environment variables.
Copy the example relays JSON files for your seed and blastr relays:
cp relays_import.example.json relays_import.jsoncp relays_blastr.example.json relays_blastr.jsonCustomise the list of relays above as needed for your setup. The JSON should contain an array of relay URLs, which default to wss:// if you don't explicitly specify the protocol.
Tip
It is hard to keep an up-to-date list of working Nostr relays. Keep an eye on Haven's logs to see if any of the relays you're using are no longer working and replace them accordingly. There is no guarantee that the example relays will be up and running at all times (or at all), and it is up to the user to keep their relay list up to date.
Haven allows you to whitelist specific npubs to grant them full relay access or blacklist them to prevent any interaction with your relay.
See the Access Control Documentation for more details on how to set up whitelists and blacklists.
Click here to view the installation routine for Systemd
To have the relay run as a service, create a systemd unit file. Make sure to limit the memory usage to less than your
system's total memory to prevent the relay from crashing the system. Replace the values for ExecStart and
WorkingDirectory with the actual paths where you installed Haven and stored the .env file.
-
Create the file:
sudo nano /etc/systemd/system/haven.service
-
Add the following contents:
[Unit] Description=Haven Relay After=network.target [Service] ExecStart=/home/ubuntu/haven/haven #Edit path to point to where you installed Haven WorkingDirectory=/home/ubuntu/haven #Edit path to point to where you installed Haven MemoryMax=1000M # Example, Limit memory usage to 1000 MB | Edit this to fit your machine Restart=always [Install] WantedBy=multi-user.target
-
Reload systemd to recognize the new service:
sudo systemctl daemon-reload
-
Start the service:
sudo systemctl start haven
-
(Optional) Enable the service to start on boot:
sudo systemctl enable haven
Click here to view the installation routine for macOS
To have the relay run on boot, create a script that will open the terminal and run the haven binary, the terminal will
remain open and the relay running with it. Be sure the download /haven directory is located in the macOS home
folder ~/
-
Create the App: Open Script Editor
-
Add the following contents:
tell application "Terminal" activate do script "cd \"$HOME/haven\"; ./haven; exec $SHELL" end tell
-
Save in the Applications folder
-
Open System - Settings - General - Login Items Hit the plus, add run_haven from the Applications folder
-
Reboot – On initial restart and terminal auto-open, choose “allow”
-
Reboot again to test the login item
To have a domain name (example: relay.domain.com) point to your machine, you will need to set up a reverse proxy.
Click here to view the installation routine for Nginx
-
Install nginx on your relay:
sudo apt-get update sudo apt-get install nginx
-
Remove default config:
sudo rm -rf /etc/nginx/sites-available/default -
Create new default config:
sudo nano /etc/nginx/sites-available/default -
Add a new reverse proxy config by adding the following configuration to your nginx configuration file:
server {
listen 80;
server_name yourdomain.com;
client_max_body_size 100m;
location / {
proxy_pass http://localhost:3355;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}Replace yourdomain.com with your actual domain name.
[!NOTE]
client_max_body_sizeis set to100mto allow for larger media files to be uploaded to Blossom.0can be used to allow for unlimited file sizes. If you are using Cloudflare proxy, be mindful of upload limits.
After adding the configuration, restart nginx:
sudo systemctl restart nginxClick here to view the installation routine for Apache
- Install Apache on your server
- Set up a virtual host:
<VirtualHost *:80> ServerName yourdomain.com RewriteEngine On RewriteCond %{HTTP:Upgrade} websocket [NC] RewriteCond %{HTTP:Connection} upgrade [NC] RewriteRule ^/?(.*) "ws://localhost:3355/$1" [P,L] # Proxy for HTTP traffic (NIP-11 relay info page) ProxyPass / http://localhost:3355/ ProxyPassReverse / http://localhost:3355/ # Optional: Add HSTS header for enhanced security Header always set Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" # Optional: Set appropriate WebSocket headers RequestHeader set Upgrade "websocket" RequestHeader set Connection "Upgrade" </VirtualHost>
Replace yourdomain.com with your actual domain name.
sudo systemctl restart httpdClick here to view the installation routine for Caddy
Preparation: Set the A record (for your domain) to point to the server's IP address.
-
Install caddy:
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list sudo apt update sudo apt install caddy
-
Open Caddyfile:
sudo nano /etc/caddy/Caddyfile
-
Add configuration:
# Configuration for HAVEN Relay yourdomain.com { reverse_proxy localhost:3355 { header_up Host {host} header_up X-Real-IP {remote_host} header_up X-Forwarded-For {remote_host} header_up X-Forwarded-Proto {scheme} transport http { versions 1.1 } } request_body { max_size 100MB } } -
Reload Caddy:
sudo systemctl reload caddy
-
Check status logs:
sudo systemctl status caddy
sudo journalctl -u caddy -f --since "2 hour ago"Note: Caddy automatically manages certificates and WebSocket connections. Certbot is not required.
If you want to serve the relay over HTTPS, you can use Certbot to generate an SSL certificate.
sudo apt-get update
sudo apt-get install certbot python3-certbot-nginxAfter installing Certbot, run the following command to generate an SSL certificate:
sudo certbot --nginxApache:
sudo certbot --apacheFollow the instructions to generate the certificate.
Note
The cerbot command will fail if the Domain you added to nginx is not yet pointing at your machine's IP address.
This is done by adding an A record subdomain pointing to your IP address through your DNS recrods Manager.
If you want to import your old notes and notes you're tagged in from other relays, run the following command:
sudo systemctl stop haven
./haven import
sudo systemctl start havenOnce everything is set up, the relay will be running on localhost:3355 with the following endpoints:
localhost:3355(outbox and Blossom server)localhost:3355/privatelocalhost:3355/chatlocalhost:3355/inbox
Haven currently supports BadgerDB and LMDB as embedded databases, meaning no external database is required.
By default, Haven uses BadgerDB. To switch to LMDB, set the DB_ENGINE environment variable to lmdb in the .env file.
LMDB can be faster than BadgerDB but performs best with NVMe drives and may require fine-tuning based on factors such as database size, operating system, file system, and hardware.
There is no one-size-fits-all value for LMDB’s map size. Windows and macOS users, in particular, may need
to adjust the LMDB_MAPSIZE environment variable to a value lower than the available free disk space if the default
value of 273 GB is too high. Otherwise, Haven will fail to bootstrap. Users with large databases may also need to
increase the LMDB_MAPSIZE value above the default. On most systems, the default value should work fine.
Despite the large default value, on most modern systems LMDB will only use the disk space it needs. The map size simply defines an upper limit for the database size. For more information about LMDB’s map size, refer to the LMDB documentation.
Haven uses Khatru's event store to store notes. The way events are stored evolves over time, and occasionally this introduces breaking changes.
As a precaution, before upgrading to a newer version of Haven, you should back up the db folder.
Haven versions 1.0.3 and earlier did not replace outdated notes. While this does not affect the relay's core functionality, it can result in a bloated database, reduced performance, and bugs in some clients. For this reason, it is recommended to delete old databases and start fresh.
BadgerDB users upgrading from Haven version 1.0.5 or earlier may encounter a critical error when starting the relay:
error running migrations: failed to delete index key xxxx: Txn is too big to fit into one request
As a workaround, you can delete the db folder and start fresh, optionally re-importing your
previous notes.
The outbox relay also functions as a media server for hosting images and videos. You can upload media files to the relay and get a shareable link. Only the relay owner and whitelisted npubs have upload permissions to the media server, but anyone can view the hosted images and videos.
Media files are stored in the file system based on the BLOSSOM_PATH environment variable set in the .env file.
The default path is ./blossom.
Haven can back up and restore your notes using a portable JSONL format. This can be done either with the built-in
./haven backup and ./haven restore commands, or with a scheduled backup periodically uploaded to your cloud
storage.
See Backup Documentation and Cloud Storage Provider Specific Instructions for further details.
This project is licensed under the MIT License.