Fix incorrectly documented config path argument (#17802)

This commit is contained in:
Andrew Ferrazzutti 2024-10-08 10:05:36 -04:00 committed by GitHub
parent f40641c29b
commit bdcc9fa388
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

1
changelog.d/17802.doc Normal file
View File

@ -0,0 +1 @@
Correct documentation to refer to the `--config-path` argument instead of `--config-file`.

View File

@ -177,11 +177,11 @@ The following applies to Synapse installations that have been installed from sou
You can start the main Synapse process with Poetry by running the following command: You can start the main Synapse process with Poetry by running the following command:
```console ```console
poetry run synapse_homeserver --config-file [your homeserver.yaml] poetry run synapse_homeserver --config-path [your homeserver.yaml]
``` ```
For worker setups, you can run the following command For worker setups, you can run the following command
```console ```console
poetry run synapse_worker --config-file [your homeserver.yaml] --config-file [your worker.yaml] poetry run synapse_worker --config-path [your homeserver.yaml] --config-path [your worker.yaml]
``` ```
## Available worker applications ## Available worker applications