Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/integration/omniauth.md')
-rw-r--r--doc/integration/omniauth.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/integration/omniauth.md b/doc/integration/omniauth.md
index 6ac2e3e13d6..2e89093321a 100644
--- a/doc/integration/omniauth.md
+++ b/doc/integration/omniauth.md
@@ -73,7 +73,7 @@ To change these settings:
Open the configuration file:
- ```sh
+ ```shell
sudo editor /etc/gitlab/gitlab.rb
```
@@ -96,7 +96,7 @@ To change these settings:
Open the configuration file:
- ```sh
+ ```shell
cd /home/git/gitlab
sudo -u git -H editor config/gitlab.yml
@@ -188,19 +188,19 @@ from the OmniAuth provider's documentation.
- Stop GitLab:
- ```sh
+ ```shell
sudo service gitlab stop
```
- Add the gem to your [Gemfile](https://gitlab.com/gitlab-org/gitlab/blob/master/Gemfile):
- ```sh
+ ```shell
gem "omniauth-your-auth-provider"
```
- Install the new OmniAuth provider gem by running the following command:
- ```sh
+ ```shell
sudo -u git -H bundle install --without development test mysql --path vendor/bundle --no-deployment
```
@@ -208,7 +208,7 @@ from the OmniAuth provider's documentation.
- Start GitLab:
- ```sh
+ ```shell
sudo service gitlab start
```