Commit d9acb681c0728689d77aeab172fa7c52f50c026d
1 parent
2f132f18
Exists in
master
and in
17 other branches
Bring back the chef-server-webui attributes
Showing
1 changed file
with
23 additions
and
0 deletions
Show diff stats
files/gitlab-cookbooks/gitlab/attributes/default.rb
... | ... | @@ -28,6 +28,29 @@ default['gitlab']['user']['shell'] = "/bin/sh" |
28 | 28 | # The home directory for the chef services user |
29 | 29 | default['gitlab']['user']['home'] = "/var/opt/gitlab" |
30 | 30 | |
31 | +-#### | |
32 | +-# GitLab core | |
33 | +-#### | |
34 | +-default['gitlab']['gitlab-core']['enable'] = true | |
35 | +-default['gitlab']['gitlab-core']['ha'] = false | |
36 | +-default['gitlab']['gitlab-core']['dir'] = "/var/opt/gitlab/gitlab-core" | |
37 | +-default['gitlab']['gitlab-core']['log_directory'] = "/var/log/gitlab/gitlab-core" | |
38 | +-default['gitlab']['gitlab-core']['environment'] = 'chefserver' | |
39 | +-default['gitlab']['gitlab-core']['listen'] = '127.0.0.1' | |
40 | +-default['gitlab']['gitlab-core']['vip'] = '127.0.0.1' | |
41 | +-default['gitlab']['gitlab-core']['port'] = 9462 | |
42 | +-default['gitlab']['gitlab-core']['backlog'] = 1024 | |
43 | +-default['gitlab']['gitlab-core']['tcp_nodelay'] = true | |
44 | +-default['gitlab']['gitlab-core']['worker_timeout'] = 3600 | |
45 | +-default['gitlab']['gitlab-core']['umask'] = "0022" | |
46 | +-default['gitlab']['gitlab-core']['worker_processes'] = 2 | |
47 | +-default['gitlab']['gitlab-core']['session_key'] = "_sandbox_session" | |
48 | +-default['gitlab']['gitlab-core']['cookie_domain'] = "all" | |
49 | +-default['gitlab']['gitlab-core']['cookie_secret'] = "47b3b8d95dea455baf32155e95d1e64e" | |
50 | +-default['gitlab']['gitlab-core']['web_ui_client_name'] = "chef-webui" | |
51 | +-default['gitlab']['gitlab-core']['web_ui_admin_user_name'] = "admin" | |
52 | +-default['gitlab']['gitlab-core']['web_ui_admin_default_password'] = "p@ssw0rd1" | |
53 | +- | |
31 | 54 | default['gitlab']['gitlab-core']['repositories_path'] = "/var/opt/gitlab/repositories" |
32 | 55 | default['gitlab']['gitlab-core']['internal_api_url'] = "http://localhost:8080" |
33 | 56 | ... | ... |