Radish alpha
r
rad:z371PVmDHdjJucejRoRYJcDEvD5pp
Radicle website including documentation and guides
Radicle
Git
example node alias fix for issue f9f4b61
Archived did:key:z6Mkrubm...Kxsr opened 2 years ago

Replace example node alias with a self-describing one that is more clear for first time readers.

1 file changed +6 -6 48de0e3e 99681f74
modified _guides/seeder.md
@@ -124,7 +124,7 @@ Once the Radicle binaries installed, we can create a Radicle *profile*. This
consists of an Ed25519 key pair and directory under which Radicle stores user
data.

-
    rad auth --alias seed.mentharos.net
+
    rad auth --alias seed.example.com

The above command will create a profile with the given node *alias* in
`~/.radicle`, or `$RAD_HOME` if set. We recommend setting your alias to the
@@ -162,7 +162,7 @@ is often set, such that all data on the network is stored and replicated.
Second, we must set an external address for the node to be reached on the
network. This address will be advertised to peers, allowing them to connect to
your seed node. Generally, this will be a DNS name with port `8776`, for
-
example `seed.mentharos.net:8776`.
+
example `seed.example.com:8776`.

Here's an example minimal configuration file with a permissive seeding policy
and external address set:
@@ -170,8 +170,8 @@ and external address set:
```json
{
  "node": {
-
    "alias": "seed.mentharos.net",
-
    "externalAddresses": ["seed.mentharos.net:8776"],
+
    "alias": "seed.example.com",
+
    "externalAddresses": ["seed.example.com:8776"],
    "policy": "allow",
    "scope": "all"
  }
@@ -304,14 +304,14 @@ to 16 external addresses.

You'll find this setting in your configuration file, under
`node.externalAddresses`. External addresses are JSON strings of the form
-
`<host>:<port>`, for example `seed.mentharos.net:8776`, where `<host>` is a
+
`<host>:<port>`, for example `seed.example.com:8776`, where `<host>` is a
DNS name, and port is usually `8776`.

```json
{
  "node": {
    ...
-
    "externalAddresses": ["seed.mentharos.net:8776"]
+
    "externalAddresses": ["seed.example.com:8776"]
  }
}
```