SAML
Select your SAML identity provider for setup instructions:
- Okta
- Azure Active Directory (Azure AD)
- Microsoft Active Directory Federation Services (ADFS)
- Auth0
- OneLogin
- Ping Identity
- Salesforce Identity
- JumpCloud
- Other
For advanced SAML configuration options, see the saml
auth provider documentation.
Add a SAML provider
In Sourcegraph site config, ensure
externalURL
is set to a value consistent with the URL you used in the previous section in the identity provider configuration.Add an item to
auth.providers
withtype
“saml” and eitheridentityProviderMetadataURL
oridentityProviderMetadata
set. The former is preferred, but not all identity providers support it (it is sometimes called “App Federation Metadata URL” or just “SAML metadata URL”).
Here are some examples of what your site config might look like:
- Example 1:
{ // ... "externalURL": "https://sourcegraph.example.com", "auth.providers": [ { "type": "saml", "configID": "generic", "identityProviderMetadataURL": "https://example.com/saml-metadata" } ] }
- Example 2:
{ // ... "externalURL": "https://sourcegraph.example.com", "auth.providers": [ { "type": "saml", "configID": "generic", // This is a long XML string you download from your identity provider. // You can escape it to a JSON string using a tool like // https://json-escape-text.now.sh. "identityProviderMetadata": "<?xml version=\"1.0\" encoding=\"utf-8\"?><EntityDescriptor ID=\"_86c6d3fd-e0a9-4b99-b830-40b248003fb9\" entityID=\"https://sts.windows.net/6c1b91af-8e37-4921-bbfa-ef68aa2e2d1e/\" xmlns=\"urn:oasis:names:tc:SAML:2.0:metadata\"><Signature xmlns=\"http://www.w3.org/2000/09/xmldsig#\"><SignedInfo><CanonicalizationMethod Algorithm=\"http://www.w3.org/2001/10/xml-exc-c14n#\" /><SignatureMethod Algorithm=\"http://www.w3.org/2001/04/xmldsig-more#rsa-sha256\" /><Reference URI=\"#_86c6d3fd-e0a9-4b99-b830-40b248003fb9\"><Transforms><Transform Algorithm=\"http://www.w3.org/2000/09/xmldsig#enveloped-signature\" /><Transform Algorithm=\"http://www.w3.org/2001/10/xml-exc-c14n#\" /></Transforms><DigestMethod Algorithm=\"http://www.w3.org/2001/04/xmlenc#sha256\" /><DigestValue> ..." } ] }
Then, confirm there are no error messages in:
- Docker Compose and Kubernetes: the
sourcegraph-frontend
deployment logs - Single-container: the
sourcegraph/server
container logs
The most likely error message indicating a problem is Error prefetching SAML service provider metadata
. See SAML troubleshooting for more tips.
Troubleshooting
Set the env var INSECURE_SAML_LOG_TRACES=1
to log all SAML requests and responses on:
- Docker Compose and Kubernetes: the
sourcegraph-frontend
deployment - Single-container: the
sourcegraph/server
container