deploy: 47619017f9
This commit is contained in:
parent
69636ae0c7
commit
131e5b46b3
|
@ -12284,6 +12284,9 @@ information.</p>
|
||||||
|
|
||||||
# Presence requests
|
# Presence requests
|
||||||
^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
||||||
|
|
||||||
|
# User directory search requests
|
||||||
|
^/_matrix/client/(r0|v3|unstable)/user_directory/search$
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<p>Additionally, the following REST endpoints can be handled for GET requests:</p>
|
<p>Additionally, the following REST endpoints can be handled for GET requests:</p>
|
||||||
<pre><code>^/_matrix/federation/v1/groups/
|
<pre><code>^/_matrix/federation/v1/groups/
|
||||||
|
@ -12459,6 +12462,12 @@ worker_log_config: /etc/matrix-synapse/background-worker-log.yaml
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<p>This work cannot be load-balanced; please ensure the main process is restarted
|
<p>This work cannot be load-balanced; please ensure the main process is restarted
|
||||||
after setting this option in the shared configuration!</p>
|
after setting this option in the shared configuration!</p>
|
||||||
|
<p>User directory updates allow REST endpoints matching the following regular
|
||||||
|
expressions to work:</p>
|
||||||
|
<pre><code>^/_matrix/client/(r0|v3|unstable)/user_directory/search$
|
||||||
|
</code></pre>
|
||||||
|
<p>The above endpoints can be routed to any worker, though you may choose to route
|
||||||
|
it to the chosen user directory worker.</p>
|
||||||
<p>This style of configuration supersedes the legacy <code>synapse.app.user_dir</code>
|
<p>This style of configuration supersedes the legacy <code>synapse.app.user_dir</code>
|
||||||
worker application type.</p>
|
worker application type.</p>
|
||||||
<h4 id="notifying-application-services"><a class="header" href="#notifying-application-services">Notifying Application Services</a></h4>
|
<h4 id="notifying-application-services"><a class="header" href="#notifying-application-services">Notifying Application Services</a></h4>
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -364,6 +364,9 @@ information.</p>
|
||||||
|
|
||||||
# Presence requests
|
# Presence requests
|
||||||
^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
||||||
|
|
||||||
|
# User directory search requests
|
||||||
|
^/_matrix/client/(r0|v3|unstable)/user_directory/search$
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<p>Additionally, the following REST endpoints can be handled for GET requests:</p>
|
<p>Additionally, the following REST endpoints can be handled for GET requests:</p>
|
||||||
<pre><code>^/_matrix/federation/v1/groups/
|
<pre><code>^/_matrix/federation/v1/groups/
|
||||||
|
@ -539,6 +542,12 @@ worker_log_config: /etc/matrix-synapse/background-worker-log.yaml
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<p>This work cannot be load-balanced; please ensure the main process is restarted
|
<p>This work cannot be load-balanced; please ensure the main process is restarted
|
||||||
after setting this option in the shared configuration!</p>
|
after setting this option in the shared configuration!</p>
|
||||||
|
<p>User directory updates allow REST endpoints matching the following regular
|
||||||
|
expressions to work:</p>
|
||||||
|
<pre><code>^/_matrix/client/(r0|v3|unstable)/user_directory/search$
|
||||||
|
</code></pre>
|
||||||
|
<p>The above endpoints can be routed to any worker, though you may choose to route
|
||||||
|
it to the chosen user directory worker.</p>
|
||||||
<p>This style of configuration supersedes the legacy <code>synapse.app.user_dir</code>
|
<p>This style of configuration supersedes the legacy <code>synapse.app.user_dir</code>
|
||||||
worker application type.</p>
|
worker application type.</p>
|
||||||
<h4 id="notifying-application-services"><a class="header" href="#notifying-application-services">Notifying Application Services</a></h4>
|
<h4 id="notifying-application-services"><a class="header" href="#notifying-application-services">Notifying Application Services</a></h4>
|
||||||
|
|
Loading…
Reference in New Issue