summaryrefslogtreecommitdiff
path: root/gitlab-server/usr/share/gitlab-install/gitlab-ci/config/application.yml
blob: 6eb5eb19712cbe8c26832940851a4cfe85375536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
defaults: &defaults
  gitlab_server_urls:
    # Replace with your gitlab server url
    - 'http://##GITLAB_HOSTNAME##/'

  ## Gitlab CI settings  
  gitlab_ci:
    ## Web server settings
    host: ##GITLAB_HOSTNAME##
    port: ##CI_PORT##
    https: false

    ## 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: 
    #
    # Send emails only on broken builds (default: true)
    # all_broken_builds: true
    # 
    # Add committer to recipients list (default: false)
    # add_committer: true
    
  gravatar:
    enabled: true
    plain_url: "http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=mm"
    ssl_url:   "https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=mm"


development:
  <<: *defaults

test:
  <<: *defaults
  gitlab_server_urls:
    - 'http://demo.gitlab.com/'

production:
  <<: *defaults