Browse Source

Call out the need for an X-Forwarded-Proto in the upgrade notes (#9501)

tags/v1.29.0rc1
Richard van der Hoff 3 years ago
committed by GitHub
parent
commit
e53f11bd62
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 1 deletions
  1. +6
    -0
      CHANGES.md
  2. +20
    -0
      UPGRADE.rst
  3. +1
    -1
      changelog.d/9472.feature
  4. +1
    -0
      changelog.d/9501.feature

+ 6
- 0
CHANGES.md View File

@@ -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)
===========================



+ 20
- 0
UPGRADE.rst View File

@@ -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
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
====================



+ 1
- 1
changelog.d/9472.feature View File

@@ -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
- 0
changelog.d/9501.feature View File

@@ -0,0 +1 @@
Add support for `X-Forwarded-Proto` header when using a reverse proxy.

Loading…
Cancel
Save