Skip to content
Snippets Groups Projects
Commit 5811368a authored by Marin Jankovski's avatar Marin Jankovski
Browse files

Add to readme changes regarding CI integration.

parent 67d1dfd6
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,15 @@
After you run `sudo gitlab-ctl reconfigure`, your GitLab CI Coordinator should
now be reachable at `http://ci.example.com`.
Follow the on screen instructions on how to generate the app id and secret.
Once generated, add them to `/etc/gitlab/gitlab.rb`
```
gitlab_ci['gitlab_server'] = { 'url' => 'http://gitlab.example.com', 'app_id' => "1234", 'app_secret' => 'qwertyuio'}
```
and run `sudo gitlab-ctl reconfigure` again.
## Running GitLab CI on its own server
If you want to run GitLab and GitLab CI Coordinator on two separate servers you
......@@ -33,7 +42,7 @@
ci_external_url 'http://ci.example.com'
# Tell GitLab CI to integrate with gitlab.example.com
gitlab_ci['gitlab_server_urls'] = ['http://gitlab.example.com']
gitlab_ci['gitlab_server'] = { 'url' => 'http://gitlab.example.com', 'app_id' => "1234", 'app_secret' => 'qwertyuio'}
# Shut down GitLab services on the CI server
unicorn['enable'] = false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment