mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-17 15:34:22 -05:00
Call out the need for an X-Forwarded-Proto in the upgrade notes (#9501)
This commit is contained in:
parent
2566dc57ce
commit
e53f11bd62
@ -1,3 +1,9 @@
|
|||||||
|
Synapse 1.xx.0
|
||||||
|
==============
|
||||||
|
|
||||||
|
Note that synapse now expects an `X-Forwarded-Proto` header when used with a reverse proxy. Please see [UPGRADE.rst](UPGRADE.rst#upgrading-to-v1290) for more details on this change.
|
||||||
|
|
||||||
|
|
||||||
Synapse 1.28.0 (2021-02-25)
|
Synapse 1.28.0 (2021-02-25)
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
20
UPGRADE.rst
20
UPGRADE.rst
@ -85,6 +85,26 @@ for example:
|
|||||||
wget https://packages.matrix.org/debian/pool/main/m/matrix-synapse-py3/matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
wget https://packages.matrix.org/debian/pool/main/m/matrix-synapse-py3/matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
||||||
dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
||||||
|
|
||||||
|
Upgrading to v1.29.0
|
||||||
|
====================
|
||||||
|
|
||||||
|
Requirement for X-Forwarded-Proto header
|
||||||
|
----------------------------------------
|
||||||
|
|
||||||
|
When using Synapse with a reverse proxy (in particular, when using the
|
||||||
|
`x_forwarded` option on an HTTP listener), Synapse now expects to receive an
|
||||||
|
`X-Forwarded-Proto` header on incoming HTTP requests. If it is not set, Synapse
|
||||||
|
will log a warning on each received request.
|
||||||
|
|
||||||
|
To avoid the warning, administrators using a reverse proxy should ensure that
|
||||||
|
the reverse proxy sets `X-Forwarded-Proto` header to `https` or `http` to
|
||||||
|
indicate the protocol used by the client. See the [reverse proxy
|
||||||
|
documentation](docs/reverse_proxy.md), where the example configurations have
|
||||||
|
been updated to show how to set this header.
|
||||||
|
|
||||||
|
(Users of `Caddy <https://caddyserver.com/>`_ are unaffected, since we believe it
|
||||||
|
sets `X-Forwarded-Proto` by default.)
|
||||||
|
|
||||||
Upgrading to v1.27.0
|
Upgrading to v1.27.0
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Add support for `X-Forwarded-Proto` header when using a reverse proxy. Administrators using a reverse proxy should ensure this header is set to avoid warnings. See [docs/workers.md](docs/workers.md) for example configurations.
|
Add support for `X-Forwarded-Proto` header when using a reverse proxy.
|
||||||
|
1
changelog.d/9501.feature
Normal file
1
changelog.d/9501.feature
Normal file
@ -0,0 +1 @@
|
|||||||
|
Add support for `X-Forwarded-Proto` header when using a reverse proxy.
|
Loading…
Reference in New Issue
Block a user