diff options
author | villepeh <100730729+villepeh@users.noreply.github.com> | 2023-12-04 14:38:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 12:38:46 +0000 |
commit | 0aa4d3b6f7193d9721bd484dae0242ccd0cc10b8 (patch) | |
tree | 944f526baa1db07a82234704c802417ea56bcf6c /docs/reverse_proxy.md | |
parent | Bump phonenumbers from 8.13.23 to 8.13.26 (#16722) (diff) | |
download | synapse-0aa4d3b6f7193d9721bd484dae0242ccd0cc10b8.tar.xz |
Switch UNIX socket paths to /run, and add a UNIX socket example for HAProxy (#16700)
Diffstat (limited to 'docs/reverse_proxy.md')
-rw-r--r-- | docs/reverse_proxy.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/reverse_proxy.md b/docs/reverse_proxy.md index fe9519b4b6..20854035d1 100644 --- a/docs/reverse_proxy.md +++ b/docs/reverse_proxy.md @@ -181,7 +181,11 @@ frontend matrix-federation backend matrix server matrix 127.0.0.1:8008 ``` - +Example configuration, if using a UNIX socket. The configuration lines regarding the frontends do not need to be modified. +``` +backend matrix + server matrix unix@/run/synapse/main_public.sock +``` [Delegation](delegate.md) example: ``` |