Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Add a note that changing example configuration files requires changin…
Browse files Browse the repository at this point in the history
…g omnibus-gitlab.
  • Loading branch information
maxlazio committed Jun 11, 2015
1 parent e744d06 commit 01ddea3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
17 changes: 10 additions & 7 deletions config/application.yml.example
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# If you change this file in a Merge Request, please also create
# a MR on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests

defaults: &defaults
gitlab_server:
url: 'https://gitlab.example.com/' # Replace with your gitlab server url
app_id: ''
app_secret: ''

## Gitlab CI settings
## Gitlab CI settings
gitlab_ci:
## Web server settings
host: localhost
Expand All @@ -14,18 +17,18 @@ defaults: &defaults
## Email settings
# Email address used in the "From" field in mails sent by GitLab-CI
email_from: gitlab-ci@localhost

# Email address of your support contact (default: same as email_from)
support_email: support@localhost
# Default project notifications settings:

# Default project notifications settings:
#
# Send emails only on broken builds (default: true)
# all_broken_builds: true
#
#
# Add pusher to recipients list (default: false)
# add_pusher: true

gravatar:
enabled: true
plain_url: "http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=mm"
Expand Down Expand Up @@ -55,7 +58,7 @@ development:
test:
<<: *defaults
gitlab_server:
url: 'http://demo.gitlab.com/'
url: 'http://demo.gitlab.com/'
app_id: 'id'
app_secret: 'secret'
gitlab_ci:
Expand Down
2 changes: 2 additions & 0 deletions config/initializers/smtp_settings.rb.sample
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# 2. Edit settings inside this file
# 3. Restart GitLab CI instance
#
# If you change this file in a Merge Request, please also create a Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests

if Rails.env.production?
ActionMailer::Base.delivery_method = :smtp

Expand Down
6 changes: 5 additions & 1 deletion config/resque.yml.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# If you change this file in a Merge Request, please also create
# a Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
#

development: redis://localhost:6379
test: redis://localhost:6379
production: redis://redis.example.com:6379
production: redis://redis.example.com:6379
4 changes: 4 additions & 0 deletions config/unicorn.rb.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
# See http://unicorn.bogomips.org/Unicorn/Configurator.html for complete
# documentation.

# Note: If you change this file in a Merge Request, please also create a
# Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
#

# Use at least one worker per core if you're on a dedicated server,
# more will usually help for _short_ waits on databases/caches.
worker_processes 2
Expand Down

0 comments on commit 01ddea3

Please sign in to comment.