aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-11-18 15:11:48 +0000
committerGitHub <noreply@github.com>2020-11-18 15:11:48 +0000
commite65a3443a42f9a7f2ddfcf4fda3a58b660d00b14 (patch)
treed13e12f8501c45a361ede9578701228fb5334415 /README.md
parent265cf5e835575b69575b209e4b1ad2be2016b396 (diff)
Fix paths in quickstart
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index a7a351d4..40fd69ea 100644
--- a/README.md
+++ b/README.md
@@ -57,18 +57,18 @@ $ cd dendrite
$ ./build.sh
# Generate a Matrix signing key for federation (required)
-$ ./generate-keys --private-key matrix_key.pem
+$ ./bin/generate-keys --private-key matrix_key.pem
# Generate a self-signed certificate (optional, but a valid TLS certificate is normally
# needed for Matrix federation/clients to work properly!)
-$ ./generate-keys --tls-cert server.crt --tls-key server.key
+$ ./bin/generate-keys --tls-cert server.crt --tls-key server.key
# Copy and modify the config file - you'll need to set a server name and paths to the keys
# at the very least, along with setting up the database connection strings.
$ cp dendrite-config.yaml dendrite.yaml
# Build and run the server:
-$ ./dendrite-monolith-server --tls-cert server.crt --tls-key server.key --config dendrite.yaml
+$ ./bin/dendrite-monolith-server --tls-cert server.crt --tls-key server.key --config dendrite.yaml
```
Then point your favourite Matrix client at `http://localhost:8008` or `https://localhost:8448`.