gitlab-org--gitlab-foss/doc/integration
Marcel Amirault d2cb8f785e Update docs to pass new markdownlint
Deletes extra spaces and line, makes lists consistent, and
fixes links.
2019-08-22 08:50:31 +00:00
..
img Compress images with pngquant 2019-08-07 10:01:48 +00:00
README.md Update links to relative 2019-07-25 22:49:13 +00:00
akismet.md Update redirected links to final destinations 2019-07-08 23:14:29 +00:00
auth0.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
azure.md Update redirected links to final destinations 2019-07-08 23:14:29 +00:00
bitbucket.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
cas.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
chat_commands.md Docs: Add automatic redirects to many moved files 2019-03-11 05:54:25 +00:00
crowd.md Docs: Add automatic redirects to many moved files 2019-03-11 05:54:25 +00:00
elasticsearch.md Doc: sync ES updates 2019-08-16 10:41:56 +08:00
external-issue-tracker.md Improve Youtrack documentation for style 2019-03-22 03:54:08 +00:00
facebook.md Fix markdown spacing in various docs 2019-08-12 09:53:30 +00:00
github.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
gitlab.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
gmail_action_buttons_for_gitlab.md
google.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
jenkins.md Update docs to pass new markdownlint 2019-08-22 08:50:31 +00:00
jenkins_deprecated.md Update numbered lists for docs standards 2019-07-19 02:20:32 +00:00
jira.md Docs: Add automatic redirects to many moved files 2019-03-11 05:54:25 +00:00
jira_development_panel.md Fix markdown spacing in various docs 2019-08-12 09:53:30 +00:00
kerberos.md Add more rules to markdown lint check 2019-08-12 04:23:01 +00:00
ldap.md Docs: Add automatic redirects to many moved files 2019-03-11 05:54:25 +00:00
oauth2_generic.md Update docs to pass new markdownlint 2019-08-22 08:50:31 +00:00
oauth_provider.md Remove extra blank lines from docs 2019-07-15 01:04:35 +00:00
omniauth.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
openid_connect_provider.md Update redirected links to final destinations 2019-07-08 23:14:29 +00:00
recaptcha.md
salesforce.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
saml.md Docs: Convert links in various docs to relative 2019-05-31 11:29:58 +00:00
shibboleth.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00:00
slack.md Removed the unnecessary loop through `../project_services/slack.md`. 2019-07-22 13:41:02 +02:00
slash_commands.md Docs: Convert links in various docs to relative 2019-05-31 11:29:58 +00:00
trello_power_up.md
twitter.md Update redirected links to final destinations 2019-07-08 23:14:29 +00:00
ultra_auth.md Fix whitespace in install and integration docs 2019-07-11 15:21:26 +00: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
  • Jenkins Integrate with the Jenkins CI
  • Jira Integrate with the Jira issue tracker
  • Kerberos Integrate with Kerberos
  • 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