Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Update self-hosted Google SSO guide #1264

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/docs/self-hosted/sso.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ Please refer to our [main SAML documentation](https://docs.sentry.io/accounts/ss

### Google Auth

As of [Sentry 9.1](https://github.com/getsentry/self-hosted/releases/tag/9.1.2), self-hosted Sentry comes with built-in Google Auth support. To enable, you'll need to [create a client ID and secret for your Google App](https://developers.google.com/identity/sign-in/web/server-side-flow#step_1_create_a_client_id_and_client_secret) and then enter these values into your [`sentry/config.yaml`](https://github.com/getsentry/self-hosted/blob/master/sentry/config.example.yml) file respectively:
As of [Sentry 9.1](https://github.com/getsentry/self-hosted/releases/tag/9.1.2), self-hosted Sentry comes with built-in Google Auth support. To enable, you'll need to [create a client ID and secret for your Google App](https://developers.google.com/identity/sign-in/web/server-side-flow#step_1_create_a_client_id_and_client_secret) with the following settings:

| Setting | Value |
| ------------------------------- | ----------------------------------------- |
| Authorized JavaScript origins | `${urlPrefix}` |
| Authorized redirect URIs | `${urlPrefix}/auth/sso/` |

Then enter these values into your [`sentry/config.yaml`](https://github.com/getsentry/self-hosted/blob/master/sentry/config.example.yml) file respectively:

```yaml
auth-google.client-id: '<client id>'
Expand Down