mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 17:46:08 +03:00
deploy: c9bf644fa0
This commit is contained in:
parent
cd2c5548a0
commit
723d54bb02
5 changed files with 16 additions and 72 deletions
|
@ -7035,14 +7035,13 @@ events may be dropped).</p>
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<h3 id="instance_map"><a class="header" href="#instance_map"><code>instance_map</code></a></h3>
|
<h3 id="instance_map"><a class="header" href="#instance_map"><code>instance_map</code></a></h3>
|
||||||
<p>When using workers this should be a map from <a href="usage/configuration/config_documentation.html#worker_name"><code>worker_name</code></a> to the HTTP
|
<p>When using workers this should be a map from <a href="usage/configuration/config_documentation.html#worker_name"><code>worker_name</code></a> to the
|
||||||
replication listener of the worker, if configured, and to the main process. Each worker
|
HTTP replication listener of the worker, if configured, and to the main process.
|
||||||
declared under <a href="usage/configuration/../../workers.html#stream-writers"><code>stream_writers</code></a> and
|
Each worker declared under <a href="usage/configuration/../../workers.html#stream-writers"><code>stream_writers</code></a> needs
|
||||||
<a href="usage/configuration/config_documentation.html#outbound_federation_restricted_to"><code>outbound_federation_restricted_to</code></a> needs a HTTP replication listener, and that
|
a HTTP replication listener, and that listener should be included in the <code>instance_map</code>.
|
||||||
listener should be included in the <code>instance_map</code>. The main process also needs an entry
|
The main process also needs an entry on the <code>instance_map</code>, and it should be listed under
|
||||||
on the <code>instance_map</code>, and it should be listed under <code>main</code> <strong>if even one other worker
|
<code>main</code> <strong>if even one other worker exists</strong>. Ensure the port matches with what is declared
|
||||||
exists</strong>. Ensure the port matches with what is declared inside the <code>listener</code> block for
|
inside the <code>listener</code> block for a <code>replication</code> listener.</p>
|
||||||
a <code>replication</code> listener.</p>
|
|
||||||
<p>Example configuration:</p>
|
<p>Example configuration:</p>
|
||||||
<pre><code class="language-yaml">instance_map:
|
<pre><code class="language-yaml">instance_map:
|
||||||
main:
|
main:
|
||||||
|
@ -7065,17 +7064,6 @@ Any worker specified here must also be in the <a href="usage/configuration/confi
|
||||||
typing: worker1
|
typing: worker1
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<h3 id="outbound_federation_restricted_to"><a class="header" href="#outbound_federation_restricted_to"><code>outbound_federation_restricted_to</code></a></h3>
|
|
||||||
<p>When using workers, you can restrict outbound federation traffic to only go through a
|
|
||||||
specific subset of workers. Any worker specified here must also be in the
|
|
||||||
<a href="usage/configuration/config_documentation.html#instance_map"><code>instance_map</code></a>.</p>
|
|
||||||
<pre><code class="language-yaml">outbound_federation_restricted_to:
|
|
||||||
- federation_sender1
|
|
||||||
- federation_sender2
|
|
||||||
</code></pre>
|
|
||||||
<h2>Also see the <a href="usage/configuration/../../workers.html#restrict-outbound-federation-traffic-to-a-specific-set-of-workers">worker
|
|
||||||
documentation</a>
|
|
||||||
for more info.</h2>
|
|
||||||
<h3 id="run_background_tasks_on"><a class="header" href="#run_background_tasks_on"><code>run_background_tasks_on</code></a></h3>
|
<h3 id="run_background_tasks_on"><a class="header" href="#run_background_tasks_on"><code>run_background_tasks_on</code></a></h3>
|
||||||
<p>The <a href="usage/configuration/../../workers.html#background-tasks">worker</a> that is used to run
|
<p>The <a href="usage/configuration/../../workers.html#background-tasks">worker</a> that is used to run
|
||||||
background tasks (e.g. cleaning up expired data). If not provided this
|
background tasks (e.g. cleaning up expired data). If not provided this
|
||||||
|
@ -11247,22 +11235,6 @@ the stream writer for the <code>receipts</code> stream:</p>
|
||||||
the stream writer for the <code>presence</code> stream:</p>
|
the stream writer for the <code>presence</code> stream:</p>
|
||||||
<pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
<pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h4 id="restrict-outbound-federation-traffic-to-a-specific-set-of-workers"><a class="header" href="#restrict-outbound-federation-traffic-to-a-specific-set-of-workers">Restrict outbound federation traffic to a specific set of workers</a></h4>
|
|
||||||
<p>The <code>outbound_federation_restricted_to</code> configuration is useful to make sure outbound
|
|
||||||
federation traffic only goes through a specified subset of workers. This allows you to
|
|
||||||
set more strict access controls (like a firewall) for all workers and only allow the
|
|
||||||
<code>federation_sender</code>'s to contact the outside world.</p>
|
|
||||||
<pre><code class="language-yaml">instance_map:
|
|
||||||
main:
|
|
||||||
host: localhost
|
|
||||||
port: 8030
|
|
||||||
federation_sender1:
|
|
||||||
host: localhost
|
|
||||||
port: 8034
|
|
||||||
|
|
||||||
outbound_federation_restricted_to:
|
|
||||||
- federation_sender1
|
|
||||||
</code></pre>
|
|
||||||
<h4 id="background-tasks"><a class="header" href="#background-tasks">Background tasks</a></h4>
|
<h4 id="background-tasks"><a class="header" href="#background-tasks">Background tasks</a></h4>
|
||||||
<p>There is also support for moving background tasks to a separate
|
<p>There is also support for moving background tasks to a separate
|
||||||
worker. Background tasks are run periodically or started via replication. Exactly
|
worker. Background tasks are run periodically or started via replication. Exactly
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -3515,14 +3515,13 @@ events may be dropped).</p>
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<h3 id="instance_map"><a class="header" href="#instance_map"><code>instance_map</code></a></h3>
|
<h3 id="instance_map"><a class="header" href="#instance_map"><code>instance_map</code></a></h3>
|
||||||
<p>When using workers this should be a map from <a href="#worker_name"><code>worker_name</code></a> to the HTTP
|
<p>When using workers this should be a map from <a href="#worker_name"><code>worker_name</code></a> to the
|
||||||
replication listener of the worker, if configured, and to the main process. Each worker
|
HTTP replication listener of the worker, if configured, and to the main process.
|
||||||
declared under <a href="../../workers.html#stream-writers"><code>stream_writers</code></a> and
|
Each worker declared under <a href="../../workers.html#stream-writers"><code>stream_writers</code></a> needs
|
||||||
<a href="#outbound_federation_restricted_to"><code>outbound_federation_restricted_to</code></a> needs a HTTP replication listener, and that
|
a HTTP replication listener, and that listener should be included in the <code>instance_map</code>.
|
||||||
listener should be included in the <code>instance_map</code>. The main process also needs an entry
|
The main process also needs an entry on the <code>instance_map</code>, and it should be listed under
|
||||||
on the <code>instance_map</code>, and it should be listed under <code>main</code> <strong>if even one other worker
|
<code>main</code> <strong>if even one other worker exists</strong>. Ensure the port matches with what is declared
|
||||||
exists</strong>. Ensure the port matches with what is declared inside the <code>listener</code> block for
|
inside the <code>listener</code> block for a <code>replication</code> listener.</p>
|
||||||
a <code>replication</code> listener.</p>
|
|
||||||
<p>Example configuration:</p>
|
<p>Example configuration:</p>
|
||||||
<pre><code class="language-yaml">instance_map:
|
<pre><code class="language-yaml">instance_map:
|
||||||
main:
|
main:
|
||||||
|
@ -3545,17 +3544,6 @@ Any worker specified here must also be in the <a href="#instance_map"><code>inst
|
||||||
typing: worker1
|
typing: worker1
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<h3 id="outbound_federation_restricted_to"><a class="header" href="#outbound_federation_restricted_to"><code>outbound_federation_restricted_to</code></a></h3>
|
|
||||||
<p>When using workers, you can restrict outbound federation traffic to only go through a
|
|
||||||
specific subset of workers. Any worker specified here must also be in the
|
|
||||||
<a href="#instance_map"><code>instance_map</code></a>.</p>
|
|
||||||
<pre><code class="language-yaml">outbound_federation_restricted_to:
|
|
||||||
- federation_sender1
|
|
||||||
- federation_sender2
|
|
||||||
</code></pre>
|
|
||||||
<h2>Also see the <a href="../../workers.html#restrict-outbound-federation-traffic-to-a-specific-set-of-workers">worker
|
|
||||||
documentation</a>
|
|
||||||
for more info.</h2>
|
|
||||||
<h3 id="run_background_tasks_on"><a class="header" href="#run_background_tasks_on"><code>run_background_tasks_on</code></a></h3>
|
<h3 id="run_background_tasks_on"><a class="header" href="#run_background_tasks_on"><code>run_background_tasks_on</code></a></h3>
|
||||||
<p>The <a href="../../workers.html#background-tasks">worker</a> that is used to run
|
<p>The <a href="../../workers.html#background-tasks">worker</a> that is used to run
|
||||||
background tasks (e.g. cleaning up expired data). If not provided this
|
background tasks (e.g. cleaning up expired data). If not provided this
|
||||||
|
|
|
@ -621,22 +621,6 @@ the stream writer for the <code>receipts</code> stream:</p>
|
||||||
the stream writer for the <code>presence</code> stream:</p>
|
the stream writer for the <code>presence</code> stream:</p>
|
||||||
<pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
<pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h4 id="restrict-outbound-federation-traffic-to-a-specific-set-of-workers"><a class="header" href="#restrict-outbound-federation-traffic-to-a-specific-set-of-workers">Restrict outbound federation traffic to a specific set of workers</a></h4>
|
|
||||||
<p>The <code>outbound_federation_restricted_to</code> configuration is useful to make sure outbound
|
|
||||||
federation traffic only goes through a specified subset of workers. This allows you to
|
|
||||||
set more strict access controls (like a firewall) for all workers and only allow the
|
|
||||||
<code>federation_sender</code>'s to contact the outside world.</p>
|
|
||||||
<pre><code class="language-yaml">instance_map:
|
|
||||||
main:
|
|
||||||
host: localhost
|
|
||||||
port: 8030
|
|
||||||
federation_sender1:
|
|
||||||
host: localhost
|
|
||||||
port: 8034
|
|
||||||
|
|
||||||
outbound_federation_restricted_to:
|
|
||||||
- federation_sender1
|
|
||||||
</code></pre>
|
|
||||||
<h4 id="background-tasks"><a class="header" href="#background-tasks">Background tasks</a></h4>
|
<h4 id="background-tasks"><a class="header" href="#background-tasks">Background tasks</a></h4>
|
||||||
<p>There is also support for moving background tasks to a separate
|
<p>There is also support for moving background tasks to a separate
|
||||||
worker. Background tasks are run periodically or started via replication. Exactly
|
worker. Background tasks are run periodically or started via replication. Exactly
|
||||||
|
|
Loading…
Reference in a new issue