diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-11-18 15:11:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 15:11:48 +0000 |
commit | e65a3443a42f9a7f2ddfcf4fda3a58b660d00b14 (patch) | |
tree | d13e12f8501c45a361ede9578701228fb5334415 /README.md | |
parent | 265cf5e835575b69575b209e4b1ad2be2016b396 (diff) |
Fix paths in quickstart
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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`. |