BigW Consortium Gitlab

gitlab.teatro.yml 1.76 KB
Newer Older
Mikdiet committed
1 2 3 4 5 6 7 8 9

production: &base
  gitlab:
    host: localhost
    port: 80
    https: false

    user: root

10 11
    email_from: example@example.com

Mikdiet committed
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    support_email: support@example.com

    default_projects_features:
      issues: true
      merge_requests: true
      wiki: true
      snippets: false
      visibility_level: "private"  # can be "private" | "internal" | "public"

  issues_tracker:

  gravatar:
    enabled: true                 # Use user avatar image from Gravatar.com (default: true)

  ldap:
    enabled: false
    host: '_your_ldap_server'
    port: 636
    uid: 'sAMAccountName'
    method: 'ssl' # "tls" or "ssl" or "plain"
    bind_dn: '_the_full_dn_of_the_user_you_will_bind_with'
    password: '_the_password_of_the_bind_user'
    allow_username_or_email_login: true

    base: ''

    user_filter: ''

  omniauth:
    enabled: false

  satellites:
    # Relative paths are relative to Rails.root (default: tmp/repo_satellites/)
    path: /apps/gitlab-satellites/

  backup:
    path: "tmp/backups"   # Relative paths are relative to Rails.root (default: tmp/backups/)

  gitlab_shell:
    path: /apps/gitlab-shell/

    # REPOS_PATH MUST NOT BE A SYMLINK!!!
    repos_path: /apps/repositories/
    hooks_path: /apps/gitlab-shell/hooks/

    upload_pack: true
    receive_pack: true

  git:
    bin_path: /usr/bin/git
    max_size: 5242880 # 5.megabytes
    timeout: 10

  extra:

development:
  <<: *base

test:
  <<: *base
  gravatar:
    enabled: true
  gitlab:
    host: localhost
    port: 80
  issues_tracker:
    redmine:
      title: "Redmine"
      project_url: "http://redmine/projects/:issues_tracker_id"
      issues_url: "http://redmine/:project_id/:issues_tracker_id/:id"
      new_issue_url: "http://redmine/projects/:issues_tracker_id/issues/new"

staging:
  <<: *base