diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-03-30 07:28:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 07:28:42 -0400 |
commit | c5f89fba55b2529b2c8a76e272a21d551ffa82fe (patch) | |
tree | d4a8042ec67530d00dc4125d2c2fb53008c78e97 /docs/dev/saml.md | |
parent | Always whitelist the login fallback for SSO (#7153) (diff) | |
download | synapse-c5f89fba55b2529b2c8a76e272a21d551ffa82fe.tar.xz |
Add developer documentation for running a local CAS server (#7147)
Diffstat (limited to '')
-rw-r--r-- | docs/dev/saml.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/dev/saml.md b/docs/dev/saml.md index f41aadce47..a9bfd2dc05 100644 --- a/docs/dev/saml.md +++ b/docs/dev/saml.md @@ -18,9 +18,13 @@ To make Synapse (and therefore Riot) use it: metadata: local: ["samling.xml"] ``` -5. Run `apt-get install xmlsec1` and `pip install --upgrade --force 'pysaml2>=4.5.0'` to ensure +5. Ensure that your `homeserver.yaml` has a setting for `public_baseurl`: + ```yaml + public_baseurl: http://localhost:8080/ + ``` +6. Run `apt-get install xmlsec1` and `pip install --upgrade --force 'pysaml2>=4.5.0'` to ensure the dependencies are installed and ready to go. -6. Restart Synapse. +7. Restart Synapse. Then in Riot: |