A simple Nostr relay proxy service
- Install Rust (via rustup if not already installed).
- Copy the
.env.example
file to.env
and adjust configurations if needed:cp .env.example .env
- Run the service:
cargo run
-
Build the project for production:
cargo build --release
-
Copy the executable from
target/release/
to your production environment. -
Create a systemd service unit file (e.g.,
/etc/systemd/system/pigeon-nest.service
):[Unit] Description=Pigeon Nest Service After=network.target [Service] ExecStart=/path/to/pigeon-nest Restart=always RestartSec=5 User=YOUR_USER_NAME Environment=RUST_LOG=info Environment=PORT=3000 # The actual endpoint you expose to the public Environment=ENDPOINT=ws://localhost:3000 [Install] WantedBy=multi-user.target
-
Enable and start the service:
sudo systemctl enable pigeon-nest sudo systemctl start pigeon-nest
-
Verify the service status:
sudo systemctl status pigeon-nest
MIT