-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Nostr | ||
|
||
These guides will help you to setup tools to run a nostr relay and a nostr client. | ||
|
||
- [Nostr RS Relay](./nostr-rs-relay.md) | ||
- [noStrudel](./nostrudel.md) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Nostr RS Relay | ||
|
||
|
||
Nostr is a simple, open protocol that enables global, decentralized, and censorship-resistant social media. | ||
|
||
```admonish note | ||
It is highly recommended that you run a private relay, not a public one. Private will be the default option when you open the config for the first time. You will not be able to save the config until you follow the instructions below. | ||
``` | ||
|
||
## Initial Config | ||
|
||
1. Install **Nostr RS relay** service from Start9 Registry on your server. | ||
|
||
![nostr install](./assets/nostr-1.png) | ||
|
||
|
||
1. In the service, page click **CONFIGURE** and add the pubkey in hex format to whitelist your client. Click save. | ||
|
||
![nostr whitelist pubkey](./assets/nostr-2.png) | ||
|
||
|
||
1. Now you will have a Nostr relay websocket URL available in Nostr Properties. | ||
|
||
|
||
## Running a private relay | ||
|
||
Private relays serve as a personal backup for your posts, follows, messages, settings, and more. Without a private relay, there is no assurance that this data will be preserved, and there is a risk of it disappearing unexpectedly. By utilizing a private relay, only the pubkeys on the whitelist are authorized to post and save content to your relay. To ensure functionality, it is essential to whitelist your own pubkey in hex format. The configuration settings will not permit saving until at least one pubkey is added to the whitelist. Some Nostr clients may offer the option to copy your hex pubkey, but if not, you can visit [https://damus.io/key](https://damus.io/key) to convert your npub to hex. | ||
|
||
|
||
## Running a public relay | ||
|
||
In contrast to a private relay, a public relay lacks a whitelist, permitting any pubkey to post. Running a public relay is not recommended unless you comprehend the associated risks and configure it with appropriate safeguards. The primary risk to be mindful of is the potential for malicious clients to spam your relay, leading to the saturation of your storage drive. While we have implemented fairly restrictive defaults in your configuration to mitigate this risk, it is crucial to acknowledge that you assume responsibility for managing this aspect on your own. | ||
|
||
|
||
## Testing your relay | ||
|
||
If you want to test your private relay and verify whether it's storing all your notes, you can SSH into your server and execute the following command. | ||
|
||
``` | ||
sudo podman exec nostr.embassy sqlite3 /data/nostr.db "SELECT content FROM event;" | grep -o 'content":"[^"]*' | awk -F: '{print $1":"$2}' | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# noStrudel | ||
|
||
noStrudel is a web app for exploring the nostr protocol. | ||
|
||
## Using noStrudel on StartOS | ||
|
||
1. Install the noStrudel service from the Start9 registry on your server. | ||
|
||
![install](./assets/nostrudel-1.png) | ||
|
||
|
||
1. Click "Start". | ||
|
||
![start](./assets/nostrudel-2.png) | ||
|
||
|
||
1. When the service is ready click "Launch UI" to access noStrudel. | ||
|
||
![launch](./assets/nostrudel-3.png) | ||
|
||
|
||
1. Choose how to setup your relays and create a new account or access an existing account by using a nip-07 browser extension. If creating a new account, be sure to securely back up the private key, preferably using Vaultwarden on StartOS. | ||
|
||
![sign in](./assets/nostrudel-4.png) | ||
|
||
1. To connect to your own private relay, go to Relays -> App Relays, paste in your Nostr Relay Websocket URL (e.g. ws://address.onion) and click add. You can find this value in the Properties section of your Nostr RS Relay service. | ||
|
||
```admonish note | ||
If you plan to connect to your own private relay, you must use [Tor browser](https://www.torproject.org/) or [run Tor](/user-manual/connecting-remotely.md) on your system. We recommend using Firefox which must be [configured to use Tor](/misc-guides/firefox-guides/tor.md). | ||
It is recommended to use your Relay's Tor websocket URL (ws://address.onion), since the LAN websocket URL (wss://address.local) will only work when you are home. | ||
``` | ||
![add relay](./assets/nostrudel-5.png) | ||
1. To connect to your LND instance using [NWC](https://marketplace.start9.com/marketplace/nostr-wallet-connect) (Nostr Wallet Connect) for LN payments, go to Settings -> Lightning -> Connect wallet. Choose NWC and paste your pairing secret. | ||
![connect wallet](./assets/nostrudel-6.png) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Vaultwarden |