gitlab-org--gitlab-foss/doc/integration
Brett Walker b0be58a1b3 Resolve "CE documentation is not CommonMark compliant" 2018-09-06 16:52:18 +00:00
..
img Compress all PNG images under doc/ 2018-08-27 15:52:03 +02:00
README.md Remove Gemnasium service 2018-08-20 18:09:57 +00:00
akismet.md Updated Akismet documentation 2016-08-16 17:13:01 -05:00
auth0.md Merge branch 'fix/auth0-unsafe-login-10-6' into 'security-10-6' 2018-03-21 14:43:47 +00:00
azure.md Resolve "CE documentation is not CommonMark compliant" 2018-09-06 16:52:18 +00:00
bitbucket.md Add Bitbucket Server importer docs 2018-08-08 15:25:25 -07:00
cas.md Fix markdown link in Omniauth docs 2017-02-09 08:55:09 +01:00
chat_commands.md Rename "Slash commands" to "Quick actions" 2017-06-15 09:01:56 -05:00
crowd.md Move and update Crowd authentication documentation 2017-03-07 11:58:30 -06:00
external-issue-tracker.md Custom issue tracker 2017-11-21 15:21:50 +00:00
facebook.md Fix markdown link in Omniauth docs 2017-02-09 08:55:09 +01:00
github.md Copyedit GitHub importer docs 2018-06-04 12:15:42 +02:00
gitlab.md Update/help integration screenshot 2018-06-06 16:43:36 +00:00
gmail_action_buttons_for_gitlab.md
google.md Fix typo and formatting 2018-07-04 01:32:49 +00:00
jira.md Move project services to new location under Integrations 2017-02-03 20:28:47 +01:00
ldap.md Change wording for LDAP doc that was moved to a new location 2017-02-20 14:15:35 +01:00
oauth2_generic.md Resolve "CE documentation is not CommonMark compliant" 2018-09-06 16:52:18 +00:00
oauth_provider.md Update doc/integration/oauth_provider.md 2018-08-08 20:03:36 +00:00
omniauth.md Resolve "CE documentation is not CommonMark compliant" 2018-09-06 16:52:18 +00:00
openid_connect_provider.md Don't hash user ID in OIDC subject claim 2018-06-28 15:31:47 +02:00
recaptcha.md Show a reCAPTCHA on signin page if custom header is set 2018-06-21 15:37:34 -07:00
saml.md Resolve "CE documentation is not CommonMark compliant" 2018-09-06 16:52:18 +00:00
shibboleth.md Update OmniAuth Shibboleth gem to latest to gain support 2018-07-04 20:39:30 -05:00
slack.md
slash_commands.md Add slash command for moving an issue 2018-03-15 13:09:11 +00:00
trello_power_up.md Simple docs fixes 2017-10-23 14:11:51 +00:00
twitter.md Fix markdown link in Omniauth docs 2017-02-09 08:55:09 +01:00

README.md

comments
false

GitLab Integration

GitLab integrates with multiple third-party services to allow external issue trackers and external authentication.

See the documentation below for details on how to configure these services.

  • Akismet Configure Akismet to stop spam
  • Auth0 OmniAuth Enable the Auth0 OmniAuth provider
  • Bitbucket Import projects from Bitbucket.org and login to your GitLab instance with your Bitbucket.org account
  • CAS Configure GitLab to sign in using CAS
  • External issue tracker Redmine, JIRA, etc.
  • Gmail actions buttons Adds GitLab actions to messages
  • JIRA Integrate with the JIRA issue tracker
  • LDAP Set up sign in via LDAP
  • OAuth2 provider OAuth2 application creation
  • OmniAuth Sign in via Twitter, GitHub, GitLab.com, Google, Bitbucket, Facebook, Shibboleth, SAML, Crowd, Azure and Authentiq ID
  • OpenID Connect Use GitLab as an identity provider
  • PlantUML Configure PlantUML to use diagrams in AsciiDoc documents.
  • reCAPTCHA Configure GitLab to use Google reCAPTCHA for new users
  • SAML Configure GitLab as a SAML 2.0 Service Provider
  • Trello Integrate Trello with GitLab

GitLab Enterprise Edition contains advanced Jenkins support.

Project services

Integration with services such as Campfire, Flowdock, HipChat, Pivotal Tracker, and Slack are available in the form of a Project Service.

SSL certificate errors

When trying to integrate GitLab with services that are using self-signed certificates, it is very likely that SSL certificate errors will occur on different parts of the application, most likely Sidekiq. There are 2 approaches you can take to solve this:

  1. Add the root certificate to the trusted chain of the OS.
  2. If using Omnibus, you can add the certificate to GitLab's trusted certificates.

OS main trusted chain

This resource has all the information you need to add a certificate to the main trusted chain.

This answer at Super User also has relevant information.

Omnibus Trusted Chain

Install the self signed certificate or custom certificate authorities in to GitLab Omnibus.

It is enough to concatenate the certificate to the main trusted certificate however it may be overwritten during upgrades:

cat jira.pem >> /opt/gitlab/embedded/ssl/certs/cacert.pem

After that restart GitLab with:

sudo gitlab-ctl restart