diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-05-18 14:49:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 14:49:33 -0400 |
commit | a1cb05b3e8b439a2e68d3762ea7373785b8be4e1 (patch) | |
tree | bbfc224bcf1107528c8d34fad6d75b866943b111 /docs | |
parent | Skip waiting for full state if a StateFilter does not require it (#12498) (diff) | |
download | synapse-a1cb05b3e8b439a2e68d3762ea7373785b8be4e1.tar.xz |
Fix federation in demo scripts. (#12783)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/demo.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/development/demo.md b/docs/development/demo.md index 4277252ceb..893ed6998e 100644 --- a/docs/development/demo.md +++ b/docs/development/demo.md @@ -5,7 +5,7 @@ Requires you to have a [Synapse development environment setup](https://matrix-org.github.io/synapse/develop/development/contributing_guide.html#4-install-the-dependencies). The demo setup allows running three federation Synapse servers, with server -names `localhost:8080`, `localhost:8081`, and `localhost:8082`. +names `localhost:8480`, `localhost:8481`, and `localhost:8482`. You can access them via any Matrix client over HTTP at `localhost:8080`, `localhost:8081`, and `localhost:8082` or over HTTPS at `localhost:8480`, @@ -20,9 +20,10 @@ and the servers are configured in a highly insecure way, including: The servers are configured to store their data under `demo/8080`, `demo/8081`, and `demo/8082`. This includes configuration, logs, SQLite databases, and media. -Note that when joining a public room on a different HS via "#foo:bar.net", then -you are (in the current impl) joining a room with room_id "foo". This means that -it won't work if your HS already has a room with that name. +Note that when joining a public room on a different homeserver via "#foo:bar.net", +then you are (in the current implementation) joining a room with room_id "foo". +This means that it won't work if your homeserver already has a room with that +name. ## Using the demo scripts |