2020-08-11 01:47:54 +02:00
|
|
|
# SAML authentication
|
2020-04-30 15:15:38 +02:00
|
|
|
|
|
|
|
Zulip supports using SAML authentication for Single Sign On, both when
|
|
|
|
self-hosting or on the Zulip Cloud Plus plan.
|
|
|
|
|
|
|
|
This page documents details on how to setup SAML authentication with
|
|
|
|
Zulip with various common SAML Identity Providers.
|
|
|
|
|
|
|
|
## Configure SAML with Okta
|
|
|
|
|
|
|
|
1. Make sure you have created your organization. We'll assume its URL is
|
|
|
|
`https://<subdomain>.zulipchat.com` in the instructions below.
|
|
|
|
1. Set up SAML authentication by following
|
|
|
|
[Okta's documentation](https://developer.okta.com/docs/guides/saml-application-setup/overview/).
|
|
|
|
Specify:
|
|
|
|
* `https://<subdomain>.zulipchat.com/complete/saml/` for the "Single sign on URL"`.
|
2020-06-08 23:04:39 +02:00
|
|
|
* `https://zulip.com` for the "Audience URI (SP Entity ID)".
|
2020-04-30 15:15:38 +02:00
|
|
|
* Skip "Default RelayState".
|
|
|
|
* Skip "Name ID format".
|
|
|
|
* Set 'Email` for "Application username format".
|
|
|
|
* Provide "Attribute statements" of `email` to `user.email`,
|
|
|
|
`first_name` to `user.firstName`, and `last_name` to `user.lastName`.
|
|
|
|
1. Assign the appropriate accounts in the "Assignments" tab. These are the users
|
|
|
|
that will be able to log in to your Zulip organization.
|
2020-05-28 02:00:13 +02:00
|
|
|
1. Send the following information to us at support@zulip.com:
|
2020-04-30 15:15:38 +02:00
|
|
|
* The URL of your zulipchat-hosted organization.
|
|
|
|
* The "Identity Provider metadata" provided by Okta for the application.
|
|
|
|
* The name "X" that will be displayed on the "Log in with X" button in Zulip.
|
|
|
|
* Optionally you can also send us an icon that should be shown on the button.
|
|
|
|
1. We will take care of the server-side setup and let you know as soon as it's ready.
|
|
|
|
|
|
|
|
## Configure SAML with Onelogin
|
|
|
|
|
|
|
|
1. Make sure you have created your organization. We'll assume its URL is
|
|
|
|
`https://<subdomain>.zulipchat.com` in the instructions below.
|
|
|
|
1. Navigate to the Onelogin Applications page, and click "Add App".
|
2020-06-05 12:34:33 +02:00
|
|
|
1. Search for the "SAML Test Connector (IdP w/ attr w/ sign response)" app and select it.
|
2020-04-30 15:15:38 +02:00
|
|
|
1. Set a name and logo according to your preferences and click "Save". This doesn't affect anything in Zulip,
|
|
|
|
but will be shown on your OneLogin Applications page.
|
|
|
|
1. Go to the "Configuration" section:
|
2020-06-05 12:34:33 +02:00
|
|
|
* Leave the `RelayState` field empty.
|
2020-06-08 23:04:39 +02:00
|
|
|
* Set `https://zulip.com` as the Audience.
|
2020-06-05 12:34:33 +02:00
|
|
|
* Set `https://<subdomain>.zulipchat.com/complete/saml/` as the Recipient, ACS URL
|
2020-04-30 15:15:38 +02:00
|
|
|
and ACS URL Validator.
|
2020-06-05 12:34:33 +02:00
|
|
|
1. Go to the "Parameters" section. Ignore the pre-configured parameters that are already there
|
|
|
|
and add custom ones to match the following screenshot:
|
2020-04-30 15:15:38 +02:00
|
|
|
|
2020-08-05 11:50:17 +02:00
|
|
|
![Onelogin parameters](/static/images/help/onelogin_parameters.png)
|
2020-04-30 15:15:38 +02:00
|
|
|
|
2020-06-05 12:34:33 +02:00
|
|
|
Make sure to set the "Include in SAML assertion" flag on them.
|
2020-04-30 15:15:38 +02:00
|
|
|
|
|
|
|
1. The OneLogin side of configuration should be ready!
|
2020-05-28 02:00:13 +02:00
|
|
|
Send the following information to us at support@zulip.com:
|
2020-04-30 15:15:38 +02:00
|
|
|
* The URL of your zulipchat-hosted organization.
|
|
|
|
* The issuer URL from the "SSO" section. It contains Identity Provider metadata that we will need.
|
|
|
|
* The name "X" that will be displayed on the "Log in with X" button in Zulip.
|
|
|
|
* Optionally you can also send us an icon that should be shown on the button.
|
|
|
|
1. We will take care of the server-side setup and let you know as soon as it's ready.
|
|
|
|
|
2020-08-11 01:47:54 +02:00
|
|
|
## Related articles
|
2020-04-30 15:15:38 +02:00
|
|
|
|
|
|
|
* [SAML configuration][saml-readthedocs] for self-hosting.
|
|
|
|
|
|
|
|
[saml-readthedocs]: https://zulip.readthedocs.io/en/stable/production/authentication-methods.html#saml
|