diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2021-07-15 12:47:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 12:47:55 +0100 |
commit | c1414550490355aa9c4e2bf80fa4d13bd06e28d1 (patch) | |
tree | 529a7efd21b417834dfbc6af88a8bc1e520ba00d /docs/workers.md | |
parent | Stagger send presence to remotes (#10398) (diff) | |
download | synapse-c1414550490355aa9c4e2bf80fa4d13bd06e28d1.tar.xz |
Docs: Use something other than the document name to describe a page (#10399)
Our documentation has a history of using a document's name as a way to link to it, such as "See [workers.md]() for details". This makes sense when you're traversing a directory of files, but less sense when the files are abstracted away - as they are on the documentation website. This PR changes the links to various documentation pages to something that fits better into the surrounding sentence, as you would when making any hyperlink on the web.
Diffstat (limited to 'docs/workers.md')
-rw-r--r-- | docs/workers.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/workers.md b/docs/workers.md index 797758ee84..d8672324c3 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -73,7 +73,7 @@ https://hub.docker.com/r/matrixdotorg/synapse/. To make effective use of the workers, you will need to configure an HTTP reverse-proxy such as nginx or haproxy, which will direct incoming requests to the correct worker, or to the main synapse instance. See -[reverse_proxy.md](reverse_proxy.md) for information on setting up a reverse +[the reverse proxy documentation](reverse_proxy.md) for information on setting up a reverse proxy. When using workers, each worker process has its own configuration file which @@ -170,8 +170,8 @@ Finally, you need to start your worker processes. This can be done with either `synctl` or your distribution's preferred service manager such as `systemd`. We recommend the use of `systemd` where available: for information on setting up `systemd` to start synapse workers, see -[systemd-with-workers](systemd-with-workers). To use `synctl`, see -[synctl_workers.md](synctl_workers.md). +[Systemd with Workers](systemd-with-workers). To use `synctl`, see +[Using synctl with Workers](synctl_workers.md). ## Available worker applications |