diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-02-02 09:43:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 09:43:50 +0000 |
commit | 8f75bf1df7f2bcb3ffe0bb89f8fe3351a48769c0 (patch) | |
tree | eac17037aaa3ab18cb65494734127b0c594e8780 /docs | |
parent | Put OIDC callback URI under /_synapse/client. (#9288) (diff) | |
download | synapse-8f75bf1df7f2bcb3ffe0bb89f8fe3351a48769c0.tar.xz |
Put SAML callback URI under /_synapse/client. (#9289)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample_config.yaml | 4 | ||||
-rw-r--r-- | docs/workers.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index dd2981717d..6d265d2972 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -1566,10 +1566,10 @@ trusted_key_servers: # enable SAML login. # # Once SAML support is enabled, a metadata file will be exposed at -# https://<server>:<port>/_matrix/saml2/metadata.xml, which you may be able to +# https://<server>:<port>/_synapse/client/saml2/metadata.xml, which you may be able to # use to configure your SAML IdP with. Alternatively, you can manually configure # the IdP to use an ACS location of -# https://<server>:<port>/_matrix/saml2/authn_response. +# https://<server>:<port>/_synapse/client/saml2/authn_response. # saml2_config: # `sp_config` is the configuration for the pysaml2 Service Provider. diff --git a/docs/workers.md b/docs/workers.md index c4a6c79238..f7fc6df119 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -269,7 +269,7 @@ using): ^/_synapse/client/oidc/callback$ # SAML requests. - ^/_matrix/saml2/authn_response$ + ^/_synapse/client/saml2/authn_response$ # CAS requests. ^/_matrix/client/(api/v1|r0|unstable)/login/cas/ticket$ |