mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-14 11:57:44 +00:00
deploy: 339c3918e1
This commit is contained in:
parent
573aa22037
commit
eb39b3b6a1
5 changed files with 56 additions and 8 deletions
|
@ -1110,21 +1110,21 @@ will apply blacklisting of IP addresses.</p>
|
||||||
<li>recaptcha validation</li>
|
<li>recaptcha validation</li>
|
||||||
<li>CAS auth validation</li>
|
<li>CAS auth validation</li>
|
||||||
<li>OpenID Connect</li>
|
<li>OpenID Connect</li>
|
||||||
|
<li>Outbound federation</li>
|
||||||
<li>Federation (checking public key revocation)</li>
|
<li>Federation (checking public key revocation)</li>
|
||||||
|
<li>Fetching public keys of other servers</li>
|
||||||
|
<li>Downloading remote media</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>It will <strong>not be used</strong> for:</p>
|
<p>It will <strong>not be used</strong> for:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Application Services</li>
|
<li>Application Services</li>
|
||||||
<li>Identity servers</li>
|
<li>Identity servers</li>
|
||||||
<li>Outbound federation</li>
|
|
||||||
<li>In worker configurations
|
<li>In worker configurations
|
||||||
<ul>
|
<ul>
|
||||||
<li>connections between workers</li>
|
<li>connections between workers</li>
|
||||||
<li>connections from workers to Redis</li>
|
<li>connections from workers to Redis</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>Fetching public keys of other servers</li>
|
|
||||||
<li>Downloading remote media</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="troubleshooting-1"><a class="header" href="#troubleshooting-1">Troubleshooting</a></h2>
|
<h2 id="troubleshooting-1"><a class="header" href="#troubleshooting-1">Troubleshooting</a></h2>
|
||||||
<p>If a proxy server is used with TLS (HTTPS) and no connections are established,
|
<p>If a proxy server is used with TLS (HTTPS) and no connections are established,
|
||||||
|
@ -1545,6 +1545,30 @@ dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h1 id="upgrading-to-v1xx0"><a class="header" href="#upgrading-to-v1xx0">Upgrading to v1.xx.0</a></h1>
|
||||||
|
<h2 id="add-support-for-routing-outbound-http-requests-via-a-proxy-for-federation"><a class="header" href="#add-support-for-routing-outbound-http-requests-via-a-proxy-for-federation">Add support for routing outbound HTTP requests via a proxy for federation</a></h2>
|
||||||
|
<p>Since Synapse 1.6.0 (2019-11-26) you can set a proxy for outbound HTTP requests via
|
||||||
|
http_proxy/https_proxy environment variables. This proxy was set for:</p>
|
||||||
|
<ul>
|
||||||
|
<li>push</li>
|
||||||
|
<li>url previews</li>
|
||||||
|
<li>phone-home stats</li>
|
||||||
|
<li>recaptcha validation</li>
|
||||||
|
<li>CAS auth validation</li>
|
||||||
|
<li>OpenID Connect</li>
|
||||||
|
<li>Federation (checking public key revocation)</li>
|
||||||
|
</ul>
|
||||||
|
<p>In this version we have added support for outbound requests for:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Outbound federation</li>
|
||||||
|
<li>Downloading remote media</li>
|
||||||
|
<li>Fetching public keys of other servers</li>
|
||||||
|
</ul>
|
||||||
|
<p>These requests use the same proxy configuration. If you have a proxy configuration we
|
||||||
|
recommend to verify the configuration. It may be necessary to adjust the <code>no_proxy</code>
|
||||||
|
environment variable.</p>
|
||||||
|
<p>See <a href="setup/forward_proxy.html">using a forward proxy with Synapse documentation</a> for
|
||||||
|
details.</p>
|
||||||
<h1 id="upgrading-to-v1390"><a class="header" href="#upgrading-to-v1390">Upgrading to v1.39.0</a></h1>
|
<h1 id="upgrading-to-v1390"><a class="header" href="#upgrading-to-v1390">Upgrading to v1.39.0</a></h1>
|
||||||
<h2 id="deprecation-of-the-current-third-party-rules-module-interface"><a class="header" href="#deprecation-of-the-current-third-party-rules-module-interface">Deprecation of the current third-party rules module interface</a></h2>
|
<h2 id="deprecation-of-the-current-third-party-rules-module-interface"><a class="header" href="#deprecation-of-the-current-third-party-rules-module-interface">Deprecation of the current third-party rules module interface</a></h2>
|
||||||
<p>The current third-party rules module interface is deprecated in favour of the new generic
|
<p>The current third-party rules module interface is deprecated in favour of the new generic
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -232,21 +232,21 @@ will apply blacklisting of IP addresses.</p>
|
||||||
<li>recaptcha validation</li>
|
<li>recaptcha validation</li>
|
||||||
<li>CAS auth validation</li>
|
<li>CAS auth validation</li>
|
||||||
<li>OpenID Connect</li>
|
<li>OpenID Connect</li>
|
||||||
|
<li>Outbound federation</li>
|
||||||
<li>Federation (checking public key revocation)</li>
|
<li>Federation (checking public key revocation)</li>
|
||||||
|
<li>Fetching public keys of other servers</li>
|
||||||
|
<li>Downloading remote media</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>It will <strong>not be used</strong> for:</p>
|
<p>It will <strong>not be used</strong> for:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Application Services</li>
|
<li>Application Services</li>
|
||||||
<li>Identity servers</li>
|
<li>Identity servers</li>
|
||||||
<li>Outbound federation</li>
|
|
||||||
<li>In worker configurations
|
<li>In worker configurations
|
||||||
<ul>
|
<ul>
|
||||||
<li>connections between workers</li>
|
<li>connections between workers</li>
|
||||||
<li>connections from workers to Redis</li>
|
<li>connections from workers to Redis</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>Fetching public keys of other servers</li>
|
|
||||||
<li>Downloading remote media</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="troubleshooting"><a class="header" href="#troubleshooting">Troubleshooting</a></h2>
|
<h2 id="troubleshooting"><a class="header" href="#troubleshooting">Troubleshooting</a></h2>
|
||||||
<p>If a proxy server is used with TLS (HTTPS) and no connections are established,
|
<p>If a proxy server is used with TLS (HTTPS) and no connections are established,
|
||||||
|
|
|
@ -260,6 +260,30 @@ dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h1 id="upgrading-to-v1xx0"><a class="header" href="#upgrading-to-v1xx0">Upgrading to v1.xx.0</a></h1>
|
||||||
|
<h2 id="add-support-for-routing-outbound-http-requests-via-a-proxy-for-federation"><a class="header" href="#add-support-for-routing-outbound-http-requests-via-a-proxy-for-federation">Add support for routing outbound HTTP requests via a proxy for federation</a></h2>
|
||||||
|
<p>Since Synapse 1.6.0 (2019-11-26) you can set a proxy for outbound HTTP requests via
|
||||||
|
http_proxy/https_proxy environment variables. This proxy was set for:</p>
|
||||||
|
<ul>
|
||||||
|
<li>push</li>
|
||||||
|
<li>url previews</li>
|
||||||
|
<li>phone-home stats</li>
|
||||||
|
<li>recaptcha validation</li>
|
||||||
|
<li>CAS auth validation</li>
|
||||||
|
<li>OpenID Connect</li>
|
||||||
|
<li>Federation (checking public key revocation)</li>
|
||||||
|
</ul>
|
||||||
|
<p>In this version we have added support for outbound requests for:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Outbound federation</li>
|
||||||
|
<li>Downloading remote media</li>
|
||||||
|
<li>Fetching public keys of other servers</li>
|
||||||
|
</ul>
|
||||||
|
<p>These requests use the same proxy configuration. If you have a proxy configuration we
|
||||||
|
recommend to verify the configuration. It may be necessary to adjust the <code>no_proxy</code>
|
||||||
|
environment variable.</p>
|
||||||
|
<p>See <a href="setup/forward_proxy.html">using a forward proxy with Synapse documentation</a> for
|
||||||
|
details.</p>
|
||||||
<h1 id="upgrading-to-v1390"><a class="header" href="#upgrading-to-v1390">Upgrading to v1.39.0</a></h1>
|
<h1 id="upgrading-to-v1390"><a class="header" href="#upgrading-to-v1390">Upgrading to v1.39.0</a></h1>
|
||||||
<h2 id="deprecation-of-the-current-third-party-rules-module-interface"><a class="header" href="#deprecation-of-the-current-third-party-rules-module-interface">Deprecation of the current third-party rules module interface</a></h2>
|
<h2 id="deprecation-of-the-current-third-party-rules-module-interface"><a class="header" href="#deprecation-of-the-current-third-party-rules-module-interface">Deprecation of the current third-party rules module interface</a></h2>
|
||||||
<p>The current third-party rules module interface is deprecated in favour of the new generic
|
<p>The current third-party rules module interface is deprecated in favour of the new generic
|
||||||
|
|
Loading…
Reference in a new issue