diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2022-10-17 13:00:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 12:00:09 +0100 |
commit | 1eb8dcf4c9f375a5314e0197d1236d52c1fc36a2 (patch) | |
tree | f4ece2ea8a79aeab869fc4a8a865d2a7b8419756 /contrib/docker_compose_workers/README.md | |
parent | Stop getting missing `prev_events` after we already know their signature is i... (diff) | |
download | synapse-1eb8dcf4c9f375a5314e0197d1236d52c1fc36a2.tar.xz |
Remove not needed `replication` listener in docker compose example (#14107)
Diffstat (limited to 'contrib/docker_compose_workers/README.md')
-rw-r--r-- | contrib/docker_compose_workers/README.md | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/contrib/docker_compose_workers/README.md b/contrib/docker_compose_workers/README.md index 4dbfee2853..bdd3dd32e0 100644 --- a/contrib/docker_compose_workers/README.md +++ b/contrib/docker_compose_workers/README.md @@ -94,20 +94,6 @@ worker_replication_host: synapse worker_replication_http_port: 9093 ``` -### Add Workers to `instance_map` - -Locate the `instance_map` section of your `homeserver.yaml` and populate it with your workers: - -```yaml -instance_map: - synapse-generic-worker-1: # The worker_name setting in your worker configuration file - host: synapse-generic-worker-1 # The name of the worker service in your Docker Compose file - port: 8034 # The port assigned to the replication listener in your worker config file - synapse-federation-sender-1: - host: synapse-federation-sender-1 - port: 8034 -``` - ### Configure Federation Senders This section is applicable if you are using Federation senders (synapse.app.federation_sender). Locate the `send_federation` and `federation_sender_instances` settings in your `homeserver.yaml` and configure them: @@ -122,4 +108,4 @@ federation_sender_instances: ## Other Worker types -Using the concepts shown here it is possible to create other worker types in Docker Compose. See the [Workers](https://matrix-org.github.io/synapse/latest/workers.html#available-worker-applications) documentation for a list of available workers. \ No newline at end of file +Using the concepts shown here it is possible to create other worker types in Docker Compose. See the [Workers](https://matrix-org.github.io/synapse/latest/workers.html#available-worker-applications) documentation for a list of available workers. |