gitlab-org--gitlab-foss/doc/integration
James Anderson 64e9cdda6b Update recaptcha docs for clarity
* Specified that reCAPTCHA v2 keys must be used
* Updated the URL for application settings
* Some small rewording
2018-12-07 21:47:34 +00:00
..
img Update GitHub integration docs to mainly follow GitHub updates. 2018-11-01 12:47:37 +09:00
README.md Remove Gemnasium service 2018-08-20 18:09:57 +00:00
akismet.md Resolve Markdown ordered lists not conforming to styleguide 2018-11-13 10:53:38 +10:00
auth0.md Update URLs to better ones 2018-11-09 14:41:54 +10:00
azure.md Resolve "CE documentation is not CommonMark compliant" 2018-09-06 16:52:18 +00:00
bitbucket.md Adding what Projects permission is needed as text to match up with the image. 2018-11-13 11:30:58 +10:00
cas.md
chat_commands.md Rename "Slash commands" to "Quick actions" 2017-06-15 09:01:56 -05:00
crowd.md
external-issue-tracker.md Custom issue tracker 2017-11-21 15:21:50 +00:00
facebook.md
github.md Update GitHub integration docs to mainly follow GitHub updates. 2018-11-01 12:47:37 +09:00
gitlab.md Update/help integration screenshot 2018-06-06 16:43:36 +00:00
gmail_action_buttons_for_gitlab.md Correct grammar (setup to set-up) in Docs 2018-09-21 16:29:14 +02:00
google.md update the part to Google+ API 2018-11-13 10:05:37 +00:00
jira.md
ldap.md
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 Enable omniauth by default 2018-09-13 13:44:04 +01:00
openid_connect_provider.md Don't hash user ID in OIDC subject claim 2018-06-28 15:31:47 +02:00
recaptcha.md Update recaptcha docs for clarity 2018-12-07 21:47:34 +00:00
saml.md Edited uid_attribute information with suggested changes 2018-10-22 14:36:09 +00:00
shibboleth.md Fix markdown to render correctly 2018-11-20 16:41:01 +10: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

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