diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2023-01-11 11:47:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 10:47:44 +0000 |
commit | bc7ca704ddc34a76fe9e3e1f895f459ac9ac7186 (patch) | |
tree | 19ecaafa7607fcd71c2cfce06740e7f39393a61d /docs/usage/configuration | |
parent | Implement MSC3925: changes to bundling of edits (#14811) (diff) | |
download | synapse-bc7ca704ddc34a76fe9e3e1f895f459ac9ac7186.tar.xz |
Add `tag` to `listeners` documentation (#14803)
* Add `tag` to `listeners` documentation * newsfile
Diffstat (limited to 'docs/usage/configuration')
-rw-r--r-- | docs/usage/configuration/config_documentation.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 93d6c7fb02..a355eef529 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -422,6 +422,10 @@ Sub-options for each listener include: * `port`: the TCP port to bind to. +* `tag`: An alias for the port in the logger name. If set the tag is logged instead +of the port. Default to `None`, is optional and only valid for listener with `type: http`. +See the docs [request log format](../administration/request_log.md). + * `bind_addresses`: a list of local addresses to listen on. The default is 'all local interfaces'. |