User authentication
In order to use a Sourcegraph instance, users need an account on the instance. Accounts are used to store settings and preferences, but also to identify a person to make decisions about repository visibility.
For that, various authentication providers can be configured. Multiple options can be provided.
The following methods are supported for sign up and sign in:
- Builtin password authentication
- GitHub OAuth
- GitLab OAuth
- Bitbucket Cloud OAuth
- Bitbucket Server OAuth
- Gerrit (Beta)
- SAML
- OpenID Connect
- HTTP authentication proxies
The authentication providers are configured in the auth.providers
site configuration option.
Login form configuration
To configure the presentation of the login form, see the login form configuration page.
Recommendations
If you are unsure which auth provider is right for you, we recommend applying the following rules in order:
- If you have no external identity providers (i.e., not SSO) or are just trying to spin Sourcegraph
up as quickly as possible to try, use
builtin
authentication. You can always change the auth configuration later, and user identities from external providers will be linked automatically to existing Sourcegraph accounts using verified email addresses. - If you are deploying Sourcegraph behind a HTTP authentication proxy service, use the
http-header
provider type. The proxy service should handle authentication and session management and, in turn, set a HTTP header that indicates the user identity to Sourcegraph. - If you are configuring Sourcegraph to index a GitHub or GitLab instance, we recommend using the OAuth provider for that code host. This applies even if the code host itself uses an external identity provider (e.g., SAML, OpenID Connect, LDAP, etc.). Sourcegraph will redirect to your code host on sign-in and the code host will perform the required sign-in flow before redirecting to Sourcegraph on success.
- If you are using an identity provider that supports SAML, use the SAML auth provider.
- If you are using an identity provider that supports OpenID Connect (including Google accounts), use the OpenID Connect provider.
- If you wish to use LDAP and cannot use the GitHub/GitLab OAuth provider as described above, or if you wish to use another authentication mechanism that is not yet supported, please contact us (we respond promptly).
Most users will use only one auth provider, but you can use multiple auth providers if desired to enable sign-in via multiple services. Identities from different providers will be mapped to a Sourcegraph user by comparing the user's verified email address to the email address from the external identity provider.
NOTE: If OAuth is the only sign-in method available on sign-out, a new OAuth sign-in will be attempted immediately upon a redirect to the sign-in page. If it is necessary to sign-out and have persistent access to the sign-in page, enable
builtin
sign-in in addition to your OAuth sign-in.
GitHub
Create a GitHub OAuth
application (if using
GitHub Enterprise, create one on your instance, not GitHub.com). Set the following values, replacing
sourcegraph.example.com
with the IP or hostname of your Sourcegraph instance:
- Homepage URL:
https://sourcegraph.example.com
- Authorization callback URL:
https://sourcegraph.example.com/.auth/github/callback
NOTE: If you want to enable repository permissions, you should grant your OAuth app permission to your GitHub organization(s). You can do that either by creating the OAuth app under your GitHub organization (rather than your personal account) or by following these instructions.
Then add the following lines to your site configuration:
JSON{ // ... "auth.providers": [ { "type": "github", "url": "https://github.example.com", // URL of your GitHub instance; can leave empty for github.com "displayName": "GitHub", "clientID": "replace-with-the-oauth-client-id", "clientSecret": "replace-with-the-oauth-client-secret", "allowSignup": false, // CAUTION: Set to true to enable signup. If nothing is specified in `allowOrgs` or `allowOrgsMap`, any GitHub user can sign up. "allowOrgs": ["your-org-name"], // Restrict logins and sign-ups if enabled to members of these orgs. "allowOrgsMap": { "orgName": ["Your Team Name"]} // Restrict logins and sign-ups if enabled to members of teams that belong to a given org. } ] }
Replace the clientID
and clientSecret
values with the values from your GitHub OAuth app
configuration.
Leave the url
field empty for GitHub.com.
Once you've configured GitHub as a sign-on provider, you may also want to add GitHub repositories to Sourcegraph.
How to control user sign-up and sign-in with GitHub auth provider
You can use the following filters to control how users will create accounts and sign in to your Sourcegraph instance via the GitHub auth provider.
allowSignup
Set allowSignup
to true
to enable anyone with a GitHub account to sign up without invitation (typically done only for GitHub Enterprise).
If set to false
or not set, sign-up will be blocked. In this case, new users will only be able to sign in after an admin creates their account on Sourcegraph.
The new user email, during their account creation, should match one of their GitHub verified emails.
WARNING: If
allowSignup
is set totrue
, anyone with internet access to both your Sourcegraph instance and your GitHub url are able to sign up and login to your instance. In particular, if url is set tohttps://github.com
, this means that anyone with a Github account could log in to your Sourcegraph instance and search your indexed code. Make sure to also configure theallowOrgs
field described below to limit sign-ups to your org, or limit public access to your Sourcegraph instance via IP restrictions / VPN. For assistance, contact support.
JSON{ "type": "github", ... "allowSignup": false }
allowOrgs
Restricts sign-ins to members of the listed organizations. If empty or unset, no restriction will be applied.
If combined with "allowSignup": true
, only members of the allowed orgs can create their accounts in Sourcegraph via GitHub authentitcation.
When combined with "allowSignup": false
or unset, an admin should first create the user account so that the user can sign in with GitHub if they belong to the allowed orgs.
JSON{ "type": "github", // ... "allowSignup": true, "allowOrgs": ["org1", "org2"] },
allowOrgsMap
Restricts sign-ups and new logins to members of the listed teams or subteams mapped to the organizations they belong to. If empty or unset, no restrictions will be applied.
When combined with "allowSignup": true
, only members of the allowed teams can create their accounts in Sourcegraph via GitHub authentication.
If set with "allowSignup": false
or if allowSignup
is unset, an admin should first create the new users accounts so that they can login with GitHub.
In case both allowOrgs
and allowOrgsMap
filters are configured, org membership (allowOrgs
) will be checked first. Only if the user doesn't belong to any of the listed organizations then team membership (allowOrgsMap
) will be checked.
Note that subteams inheritance is not supported — the name of child teams (subteams) should be informed so their members can be granted access to Sourcegraph.
When configuring teams in allowOrgsMap, use the team's display name. If the team names do not match exactly, users will be unable to create an account.
JSON{ "type": "github", // ... "allowOrgsMap": { "org1": [ "Your Team Name" ], "org2": [ "team1", "subteam1" ], "org3": [ "subteam2" ] } }
GitLab
Create a GitLab OAuth application. Set the following values, replacing sourcegraph.example.com
with the IP or hostname of your
Sourcegraph instance:
- Authorization callback URL:
https://sourcegraph.example.com/.auth/gitlab/callback
- Scopes:
read_user
,read_api
(be sure to set"apiScope": "read_api"
in theauth.providers
config, as indicated below)
Then add the following lines to your site configuration:
JSON{ // ... "auth.providers": [ { "type": "gitlab", "displayName": "GitLab", "clientID": "replace-with-the-oauth-application-id", "clientSecret": "replace-with-the-oauth-secret", "url": "https://gitlab.example.com", "apiScope": "read_api", // If not set, it defaults to "api" and the OAuth application will have to be adjusted accordingly. "allowSignup": false, // If not set, it defaults to true allowing any GitLab user with access to your instance to sign up. "allowGroups": ["group", "group/subgroup", "group/subgroup/subgroup"], // Restrict logins and sign-ups to members of groups or subgroups based on the full-path provided. } ]
Replace the clientID
and clientSecret
values with the values from your GitLab OAuth app
configuration.
Once you've configured GitLab as a sign-on provider, you may also want to add GitLab repositories to Sourcegraph.
NOTE: Administrators on the GitLab instance who then sign in to Sourcegraph will not have access to all of the repositories on Sourcegraph as well. Administrators will only have access to repositories on GitLab for which they are assigned the Reporter role and above.
How to control user sign-up and sign-in with GitLab auth provider
You can use the following filters to control how users can create accounts and sign in to your Sourcegraph instance via the GitLab auth provider.
allowSignup
Allows anyone with a GitLab account to create their accounts.
When false
, sign-up with GitLab will be blocked. In this case, new users can only sign in after an admin creates their account on Sourcegraph. The user account email should match their primary emails on GitLab (which are always verified).
If not set, unlike with GitHub, it defaults to true
, allowing any GitLab user with access to your instance to sign up.
JSON{ "type": "gitlab", // ... "allowSignup": false }
allowGroups
Restricts new sign-ins to members of the listed groups or subgroups.
Instead of informing the groups or subgroups names, use their full path that can be copied from the URL.
Example: for a parent group, the full path can be simple as group
. For nested groups it can look like group/subgroup/subsubgroup
.
When empty or unset, no restrictions will be applied.
If combined with "allowSignup": false
, an admin should first create the user account so that the user can sign in with GitLab.
If combined with "allowSignup": true
or with allowSignup
unset, only members of the allowed groups or subgroups can create their accounts in Sourcegraph via GitLab authentitcation.
WARNING: Users will require a minimum access level of
Guest
in at least one of the specified groups in order to gain access to Sourcegraph. GitLab offers a lower user permission level, Minimal Access, for Premium and Ultimate tier customers, which is often used to configure SAML SSO on GitLab. Sourcegraph does not currently support theMinimal Access
access level, and users with this access level will not be allowed to sign in. In these cases it is recommended to create a subgroup and add all users that require access to Sourcegraph to that subgroup with a minimum access level ofGuest
, and then add that subgroup to theallowGroups
list.
JSON{ "type": "gitlab", // ... "allowSignup": true, "allowGroups": [ "group/subgroup/subsubgroup" ] }
How to set up GitLab auth provider for use with GitLab group SAML/SSO
GitLab groups can require SAML/SSO sign-in to have access to the group. The regular OAuth sign-in won't work in this case, as users will be redirected to the normal GitLab sign-in page, requesting a username/password. In this scenario, add a ssoURL
to your GitLab auth provider configuration:
JSON{ "type": "gitlab", // ... "ssoURL": "https://gitlab.com/groups/your-group/-/saml/sso?token=xxxxxxxx" ] }
The token
parameter can be found on the Settings > SAML SSO page on GitLab.
Don't sync user permissions for internal repositories
If your organization has a lot of internal repositories that should be accessible to everyone on GitLab, you may want to mark internal repositories as public, and then configure your auth provider to not sync user permissions for internal repositories:
JSON{ "type": "gitlab", // ... "syncInternalRepoPermissions": false }
Bitbucket Cloud
Create a Bitbucket Cloud OAuth consumer. Set the following values, replacing sourcegraph.example.com
with the IP or hostname of your
Sourcegraph instance:
- Callback URL:
https://sourcegraph.example.com/.auth/bitbucketcloud/callback
- Permissions:
Account
:Read
Repositories
:Read
(more information in repository permissions section)
After the consumer is created, you will need the Key
and the Secret
, which can be found by expanding OAuth consumer in the list.
Then add the following lines to your site configuration:
JSON{ // ... "auth.providers": [ { "type": "bitbucketcloud", "displayName": "Bitbucket Cloud", "clientKey": "replace-with-the-oauth-consumer-key", "clientSecret": "replace-with-the-oauth-consumer-secret", "allowSignup": false // If not set, it defaults to true allowing any Bitbucket Cloud user with access to your instance to sign up. } ]
Replace the clientKey
and clientSecret
values with the values from your Bitbucket Cloud OAuth consumer.
Bitbucket Server
Configure a Bitbucket Server incoming link. Set the following values, replacing sourcegraph.example.com
with the IP or hostname of your
Sourcegraph instance:
- Redirect URL:
https://sourcegraph.example.com/.auth/bitbucketserver/callback
- Permissions:
Repositories
:Read
(more information in repository permissions section)
After the link is created, you will need to copy the Client ID
and the Client Secret
.
Then add the following lines to your site configuration:
JSON{ // ... "auth.providers": [ { "type": "bitbucketserver", "url": "https://bitbucket.example.com", "displayName": "Bitbucket Server", "clientID": "replace-with-the-oauth-client-id", "clientSecret": "replace-with-the-oauth-client-secret" } ]
Replace the clientID
and clientSecret
values with the values from your Bitbucket Server link.
Gerrit
BetaTo enable users to add Gerrit credentials and verify their access to repositories on Sourcegraph, add the following lines to your site configuration:
JSON{ // ... "auth.providers": [ { "type": "gerrit", "displayName": "Gerrit", "url": "https://example.gerrit.com" // Must match the URL of the code host connection for which authorization is required } ]
Users can then add Gerrit credentials by visiting their Settings > Account security.
OpenID Connect
The openidconnect
auth provider authenticates users via OpenID Connect, which is supported by many external services, including:
- Google Workspace (Google accounts)
- Okta
- Ping Identity
- Auth0
- Salesforce Identity
- Microsoft Entra ID (Azure Active Directory)
- Google Identity Platform
- Known issue: OneLogin OpenID Connect is not supported (use SAML for OneLogin instead)
If the OpenID Connect provider requires specifying scopes, the following scopes are required:
openid
email
profile
To configure Sourcegraph to authenticate users via OpenID Connect:
- Create a new OpenID Connect client in the external service (such as one of those listed above).
- Redirect/callback URI:
https://sourcegraph.example.com/.auth/callback
(replacehttps://sourcegraph.example.com
with the value of theexternalURL
property in your config)
- Redirect/callback URI:
- Provide the OpenID Connect client's issuer, client ID, and client secret in the Sourcegraph site configuration shown below.
- (Optional) Require users to have a specific email domain name to authenticate (e.g., to limit users to only those from your organization).
Example openidconnect
auth provider configuration:
JSON{ // ... "externalURL": "https://sourcegraph.example.com", "auth.providers": [ { "type": "openidconnect", "issuer": "https://oidc.example.com", "clientID": "my-client-id", "configID":"my-config-id", //An arbitrary value that will be used to reference to this auth provider within the site config "clientSecret": "my-client-secret", "requireEmailDomain": "example.com" } ] }
Sourcegraph supports the OpenID Connect Discovery standard for configuring the auth provider (using the values provided in the document at, e.g., https://oidc.example.com/.well-known/openid-configuration
).
See the openid
auth provider documentation for the full set of configuration options.
How to control user sign-up with OpenID auth provider
allowSignup
If true or not set, it allows new users to creating their Sourcegraph accounts via OpenID.
When false
, sign-up won't be available and a site admin should create new users accounts.
JSON{ "type": "openidconnect", // ... "allowSignup": false }
Google Workspace (Google accounts)
Google's Workspace (formerly known as G Suite) supports OpenID Connect, which is the best way to enable Sourcegraph authentication using Google accounts. To set it up:
- Create an OAuth client ID and client secret in the Google API credentials console. Google's interactive OpenID Connect documentation page:
- Application type: Web application
- Name: Sourcegraph (or any other name your users will recognize)
- Authorized JavaScript origins: (leave blank)
- Authorized redirect URIs:
https://sourcegraph.example.com/.auth/callback
(replacehttps://sourcegraph.example.com
with the value of theexternalURL
property in your config)
- Use the client ID and client secret values in Sourcegraph site configuration (as shown in the example below).
- Set your Google Workspace domain in
requireEmailDomain
to prevent users outside your organization from signing in.
Example openidconnect
auth provider configuration for Google Workspace:
JSON{ // ... "externalURL": "https://sourcegraph.example.com", "auth.providers": [ { "type": "openidconnect", "issuer": "https://accounts.google.com", // All Google Workspace domains use this issuer URI. "clientID": "my-client-id", "clientSecret": "my-client-secret", "requireEmailDomain": "example.com" } ] }
HTTP authentication proxies
You can wrap Sourcegraph in an authentication proxy that authenticates the user and passes the user's username or email (or both) to Sourcegraph via HTTP headers. The most popular such authentication proxy is pusher/oauth2_proxy. Another example is Google Identity-Aware Proxy (IAP). Both work well with Sourcegraph.
To use an authentication proxy to authenticate users to Sourcegraph, add the following lines to your site configuration:
JSON{ // ... "auth.providers": [ { "type": "http-header", "usernameHeader": "X-Forwarded-User", "emailHeader": "X-Forwarded-Email" } ] }
Replace X-Forwarded-User
with the name of the HTTP header added by the authentication proxy that contains the user's username.
Ensure that the HTTP proxy is not setting its own Authorization
header on the request. Sourcegraph rejects requests with unrecognized Authorization
headers and prints the error log lvl=eror msg="Invalid Authorization header." err="unrecognized HTTP Authorization request header scheme (supported values: token, token-sudo)"
.
For pusher/oauth2_proxy, use the -pass-basic-auth false
option to prevent it from sending the Authorization
header.
Username header prefixes
Some proxies add a prefix to the username header value. For example, Google IAP sets the x-goog-authenticated-user-id
to a value like accounts.google.com:alice
rather than just alice
. If this is the case, use the stripUsernameHeaderPrefix
field. If using Google IAP, for example, add the following lines to your site configuration:
JSON{ // ... "auth.providers": [ { "type": "http-header", "usernameHeader": "x-goog-authenticated-user-email", "stripUsernameHeaderPrefix": "accounts.google.com:" } ] }
Linking a Sourcegraph account to an auth provider
In most cases, the link between a Sourcegraph account and an authentication provider account happens via email.
Consequently, you can only sign in via an auth provider if your email on Sourcegraph matches the one configured in the auth provider.
Let's say the email field in your Sourcegraph account was kept blank when a site admin created the account for you, but the username matches your username on GitHub or GitLab. Will this work? If you try to sign in to SG with GitHub or GitLab, it won't work, and you will see an error informing you that a verified email is missing.
Exceptions to this rule are HTTP Proxies, where there's an option to make the link via username only. For Bitbucket, we don't support OAuth. Still, the match between the chosen auth provider used with Bitbucket and a user's Bitbucket account happens via username.
Using only a username to match a Sourcegraph account to an auth provider account is not recommended, as you can see here, for example. Usernames in Sourcegraph are mutable, so a malicious user could change a username, elevating their privileges.
Linking accounts from multiple auth providers
Sourcegraph will automatically link accounts from multiple external auth providers, resulting in a single user account on Sourcegraph. That way a user can login with multiple auth methods and end up being logged in with the same Sourcegraph account. In general, to link accounts, the following condition needs to be met:
At the time of signing in with the new account, any of the email addresses configured on the user account on the auth provider must match any of the verified email addresses on the user account on the Sourcegraph side. If there is a match, the accounts are linked, otherwise a new user account is created if auth provider is configured to support user sign ups.
Username normalization
Usernames provided from external authentication providers are normalized in Sourcegraph according to the following rules:
- Any characters not in
[a-zA-Z0-9-._]
are replaced with-
- Usernames with exactly one
@
character are interpreted as an email address, so the username will be extracted by truncating at the@
character. - Usernames with two or more
@
characters are not considered an email address, so the@
will be treated as a non-standard character and be replaced with-
- Usernames with consecutive
-
or.
characters are not allowed, so they are replaced with a single-
or.
- Usernames that start with
.
or-
are not allowed, starting periods and dashes are removed - Usernames that end with
.
are not allowed, ending periods are removed
Usernames from authentication providers are normalized before being used in Sourcegraph. Usernames chosen by users are rejected if they do not meet these criteria.
For example, a user whose external username (according the authentication provider) is alice_smith@example.com
would have the Sourcegraph username alice-smith
.
If multiple accounts normalize into the same username, separate accounts are still created, but Sourcegraph will add a randomized suffix to the username to ensure uniqueness.
Remind users to connect external accounts
When authorization is activated, users must link their external code host accounts with their Sourcegraph accounts to access private repositories. To ensure users are aware of any unlinked accounts, enable the external-accounts-modal feature flag. This prompts users to connect any missing external accounts upon visiting Sourcegraph.