diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-01-20 10:34:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-20 15:34:45 +0000 |
commit | d09099642e3a1fe9b26149fa57c58db3c26afc10 (patch) | |
tree | ed90999ab230b2ec26d3c618e8ecb3c19918dede /synapse/app | |
parent | Add a regression test for using both webclient and client resources simultane... (diff) | |
download | synapse-d09099642e3a1fe9b26149fa57c58db3c26afc10.tar.xz |
Fix redirecting to the webclient for non-HTTP(S) web_client_location. (#11783)
To not change the behaviour during the deprecation period. Follow-up to #11774.
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/homeserver.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 7ef0fdf272..efedcc8889 100644 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -131,11 +131,18 @@ class SynapseHomeServer(HomeServer): resources.update(self._module_web_resources) self._module_web_resources_consumed = True - # try to find something useful to redirect '/' to + # Try to find something useful to serve at '/': + # + # 1. Redirect to the web client if it is an HTTP(S) URL. + # 2. Redirect to the web client served via Synapse. + # 3. Redirect to the static "Synapse is running" page. + # 4. Do not redirect and use a blank resource. if self.config.server.web_client_location_is_redirect: root_resource: Resource = RootOptionsRedirectResource( self.config.server.web_client_location ) + elif WEB_CLIENT_PREFIX in resources: + root_resource = RootOptionsRedirectResource(WEB_CLIENT_PREFIX) elif STATIC_PREFIX in resources: root_resource = RootOptionsRedirectResource(STATIC_PREFIX) else: |