-
Notifications
You must be signed in to change notification settings - Fork 0
/
pillar.example
54 lines (53 loc) · 1.38 KB
/
pillar.example
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
44
45
46
47
48
49
50
51
52
53
54
gitlab:
use_rvm: False
rvm_ruby: 2.1.0
shell_version: v1.8.0
gitlab_version: 6-5-stable
db_engine: postgresql
db_name: 'gitlabhq_production'
db_user: 'git'
db_pass: 'MyVerySecretGitLabPassword'
gravatar:
enabled: false
ldap:
enabled: false
host: '_your_ldap_server_'
base: '_the_base_where_you_search_for_users'
port: 636
uid: 'sAMAccountName'
method: 'ssl' # "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
omniauth:
enabled: false
allow_single_sign_on: false
block_auto_created_users: true
shell:
audit_usernames: false
log_level: INFO
self_signed_cert: false
#ca_file: /etc/ssl/cert.pem
{% if grains['os_family'] == 'RedHat' %}
ca_file: /etc/pki/tls/certs/ca.crt
{% elif grains['os_family'] == 'Debian' %}
ca_file: /etc/ssl/certs/ca.crt
{% endif %}
#ca_path: /etc/pki/tls/certs
#{% if grains['os_family'] == 'RedHat' %}
#ca_path: /etc/pki/tls/certs
#{% elif grains['os_family'] == 'Debian' %}
#ca_path: /etc/ssl/certs
#{% endif %}
unicorn:
worker_processes: 2
timeout: 30
https: True
ssl_key: |
-----BEGIN PRIVATE KEY-----
ABC=
-----END PRIVATE KEY-----
ssl_cert: |
-----BEGIN CERTIFICATE-----
ABC=
-----END CERTIFICATE-----