1_settings.rb 24.7 KB
Newer Older
1
require_dependency File.expand_path('../../lib/gitlab', __dir__) # Load Gitlab as soon as possible
R
Riyad Preukschas 已提交
2 3 4

# Default settings
Settings['ldap'] ||= Settingslogic.new({})
5
Settings.ldap['enabled'] = false if Settings.ldap['enabled'].nil?
6

7 8 9
# backwards compatibility, we only have one host
if Settings.ldap['enabled'] || Rails.env.test?
  if Settings.ldap['host'].present?
10 11
    # We detected old LDAP configuration syntax. Update the config to make it
    # look like it was entered with the new syntax.
12
    server = Settings.ldap.except('sync_time')
13
    Settings.ldap['servers'] = {
14
      'main' => server
15
    }
16 17
  end

18
  Settings.ldap['servers'].each do |key, server|
M
Michael Kozono 已提交
19 20
    server = Settingslogic.new(server)

21
    server['label'] ||= 'LDAP'
22
    server['timeout'] ||= 10.seconds
23
    server['block_auto_created_users'] = false if server['block_auto_created_users'].nil?
24 25
    server['allow_username_or_email_login'] = false if server['allow_username_or_email_login'].nil?
    server['active_directory'] = true if server['active_directory'].nil?
D
Douwe Maan 已提交
26
    server['attributes'] = {} if server['attributes'].nil?
27
    server['lowercase_usernames'] = false if server['lowercase_usernames'].nil?
28
    server['provider_name'] ||= "ldap#{key}".downcase
29
    server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
30 31 32 33 34

    # For backwards compatibility
    server['encryption'] ||= server['method']
    server['encryption'] = 'simple_tls' if server['encryption'] == 'ssl'
    server['encryption'] = 'start_tls' if server['encryption'] == 'tls'
M
Michael Kozono 已提交
35

36 37 38 39 40
    # Certificate verification was added in 9.4.2, and defaulted to false for
    # backwards-compatibility.
    #
    # Since GitLab 10.0, verify_certificates defaults to true for security.
    server['verify_certificates'] = true if server['verify_certificates'].nil?
M
Michael Kozono 已提交
41 42

    Settings.ldap['servers'][key] = server
43 44
  end
end
R
Riyad Preukschas 已提交
45 46

Settings['omniauth'] ||= Settingslogic.new({})
47
Settings.omniauth['enabled'] = false if Settings.omniauth['enabled'].nil?
48
Settings.omniauth['auto_sign_in_with_provider'] = false if Settings.omniauth['auto_sign_in_with_provider'].nil?
49
Settings.omniauth['allow_single_sign_on'] = false if Settings.omniauth['allow_single_sign_on'].nil?
50
Settings.omniauth['external_providers'] = [] if Settings.omniauth['external_providers'].nil?
51 52
Settings.omniauth['block_auto_created_users'] = true if Settings.omniauth['block_auto_created_users'].nil?
Settings.omniauth['auto_link_ldap_user'] = false if Settings.omniauth['auto_link_ldap_user'].nil?
53
Settings.omniauth['auto_link_saml_user'] = false if Settings.omniauth['auto_link_saml_user'].nil?
54 55 56 57 58 59 60 61 62 63 64 65 66 67

Settings.omniauth['sync_profile_from_provider'] = false if Settings.omniauth['sync_profile_from_provider'].nil?
Settings.omniauth['sync_profile_attributes'] = ['email'] if Settings.omniauth['sync_profile_attributes'].nil?

# Handle backwards compatibility with merge request 11268
if Settings.omniauth['sync_email_from_provider']
  if Settings.omniauth['sync_profile_from_provider'].is_a?(Array)
    Settings.omniauth['sync_profile_from_provider'] |= [Settings.omniauth['sync_email_from_provider']]
  elsif !Settings.omniauth['sync_profile_from_provider']
    Settings.omniauth['sync_profile_from_provider'] = [Settings.omniauth['sync_email_from_provider']]
  end

  Settings.omniauth['sync_profile_attributes'] |= ['email'] unless Settings.omniauth['sync_profile_attributes'] == true
end
68

69
Settings.omniauth['providers'] ||= []
T
tduehr 已提交
70 71 72 73
Settings.omniauth['cas3'] ||= Settingslogic.new({})
Settings.omniauth.cas3['session_duration'] ||= 8.hours
Settings.omniauth['session_tickets'] ||= Settingslogic.new({})
Settings.omniauth.session_tickets['cas3'] = 'ticket'
R
Riyad Preukschas 已提交
74

75 76 77
# Fill out omniauth-gitlab settings. It is needed for easy set up GHE or GH by just specifying url.

github_default_url = "https://github.com"
78
github_settings = Settings.omniauth['providers'].find { |provider| provider["name"] == "github" }
79 80 81 82 83 84 85 86 87 88

if github_settings
  # For compatibility with old config files (before 7.8)
  # where people dont have url in github settings
  if github_settings['url'].blank?
    github_settings['url'] = github_default_url
  end

  github_settings["args"] ||= Settingslogic.new({})

D
Douwe Maan 已提交
89 90 91 92 93 94 95 96 97 98
  github_settings["args"]["client_options"] =
    if github_settings["url"].include?(github_default_url)
      OmniAuth::Strategies::GitHub.default_options[:client_options]
    else
      {
        "site"          => File.join(github_settings["url"], "api/v3"),
        "authorize_url" => File.join(github_settings["url"], "login/oauth/authorize"),
        "token_url"     => File.join(github_settings["url"], "login/oauth/access_token")
      }
    end
99
end
100

101
Settings['shared'] ||= Settingslogic.new({})
102
Settings.shared['path'] = Settings.absolute(Settings.shared['path'] || "shared")
103

104
Settings['issues_tracker'] ||= {}
105

106 107 108
#
# GitLab
#
R
Riyad Preukschas 已提交
109
Settings['gitlab'] ||= Settingslogic.new({})
110
Settings.gitlab['default_projects_limit'] ||= 100000
111
Settings.gitlab['default_branch_protection'] ||= 2
112
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
113
Settings.gitlab['default_theme'] = Gitlab::Themes::APPLICATION_DEFAULT if Settings.gitlab['default_theme'].nil?
114
Settings.gitlab['host']       ||= ENV['GITLAB_HOST'] || 'localhost'
D
Dmitriy Zaporozhets 已提交
115
Settings.gitlab['ssh_host']   ||= Settings.gitlab.host
116
Settings.gitlab['https']        = false if Settings.gitlab['https'].nil?
117
Settings.gitlab['port']       ||= ENV['GITLAB_PORT'] || (Settings.gitlab.https ? 443 : 80)
118
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
119
Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
120
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
121 122 123
Settings.gitlab['email_from'] ||= ENV['GITLAB_EMAIL_FROM'] || "gitlab@#{Settings.gitlab.host}"
Settings.gitlab['email_display_name'] ||= ENV['GITLAB_EMAIL_DISPLAY_NAME'] || 'GitLab'
Settings.gitlab['email_reply_to'] ||= ENV['GITLAB_EMAIL_REPLY_TO'] || "noreply@#{Settings.gitlab.host}"
F
Fu Xu 已提交
124
Settings.gitlab['email_subject_suffix'] ||= ENV['GITLAB_EMAIL_SUBJECT_SUFFIX'] || ""
125 126
Settings.gitlab['base_url']   ||= Settings.__send__(:build_base_gitlab_url)
Settings.gitlab['url']        ||= Settings.__send__(:build_gitlab_url)
D
Dmitriy Zaporozhets 已提交
127
Settings.gitlab['user']       ||= 'git'
128 129 130 131 132
Settings.gitlab['user_home']  ||= begin
  Etc.getpwnam(Settings.gitlab['user']).dir
rescue ArgumentError # no user configured
  '/home/' + Settings.gitlab['user']
end
133
Settings.gitlab['time_zone'] ||= nil
D
Dmitriy Zaporozhets 已提交
134
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
135
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
136
Settings.gitlab['restricted_visibility_levels'] = Settings.__send__(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
137
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
138
Settings.gitlab['issue_closing_pattern'] = '((?:[Cc]los(?:e[sd]?|ing)|[Ff]ix(?:e[sd]|ing)?|[Rr]esolv(?:e[sd]?|ing)|[Ii]mplement(?:s|ed|ing)?)(:?) +(?:(?:issues? +)?%{issue_ref}(?:(?: *,? +and +| *, *)?)|([A-Z][A-Z0-9_]+-\d+))+)' if Settings.gitlab['issue_closing_pattern'].nil?
139
Settings.gitlab['default_projects_features'] ||= {}
140
Settings.gitlab['webhook_timeout'] ||= 10
141
Settings.gitlab['max_attachment_size'] ||= 10
142
Settings.gitlab['session_expire_delay'] ||= 10080
143 144 145
Settings.gitlab.default_projects_features['issues']             = true if Settings.gitlab.default_projects_features['issues'].nil?
Settings.gitlab.default_projects_features['merge_requests']     = true if Settings.gitlab.default_projects_features['merge_requests'].nil?
Settings.gitlab.default_projects_features['wiki']               = true if Settings.gitlab.default_projects_features['wiki'].nil?
146
Settings.gitlab.default_projects_features['snippets']           = true if Settings.gitlab.default_projects_features['snippets'].nil?
147 148
Settings.gitlab.default_projects_features['builds']             = true if Settings.gitlab.default_projects_features['builds'].nil?
Settings.gitlab.default_projects_features['container_registry'] = true if Settings.gitlab.default_projects_features['container_registry'].nil?
149
Settings.gitlab.default_projects_features['visibility_level']   = Settings.__send__(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
150
Settings.gitlab['domain_whitelist'] ||= []
151
Settings.gitlab['import_sources'] ||= Gitlab::ImportSources.values
152
Settings.gitlab['trusted_proxies'] ||= []
153
Settings.gitlab['no_todos_messages'] ||= YAML.load_file(Rails.root.join('config', 'no_todos_messages.yml'))
154
Settings.gitlab['usage_ping_enabled'] = true if Settings.gitlab['usage_ping_enabled'].nil?
R
Riyad Preukschas 已提交
155

V
Valery Sizov 已提交
156 157 158 159
#
# CI
#
Settings['gitlab_ci'] ||= Settingslogic.new({})
160 161 162
Settings.gitlab_ci['shared_runners_enabled'] = true if Settings.gitlab_ci['shared_runners_enabled'].nil?
Settings.gitlab_ci['all_broken_builds']     = true if Settings.gitlab_ci['all_broken_builds'].nil?
Settings.gitlab_ci['add_pusher']            = false if Settings.gitlab_ci['add_pusher'].nil?
163
Settings.gitlab_ci['builds_path']           = Settings.absolute(Settings.gitlab_ci['builds_path'] || "builds/")
164
Settings.gitlab_ci['url']                 ||= Settings.__send__(:build_gitlab_ci_url)
V
Valery Sizov 已提交
165

D
Douwe Maan 已提交
166 167 168
#
# Reply by email
#
169
Settings['incoming_email'] ||= Settingslogic.new({})
170
Settings.incoming_email['enabled'] = false if Settings.incoming_email['enabled'].nil?
D
Douwe Maan 已提交
171

K
Kamil Trzcinski 已提交
172 173 174 175 176
#
# Build Artifacts
#
Settings['artifacts'] ||= Settingslogic.new({})
Settings.artifacts['enabled']      = true if Settings.artifacts['enabled'].nil?
177 178 179 180
Settings.artifacts['storage_path'] = Settings.absolute(Settings.artifacts.values_at('path', 'storage_path').compact.first || File.join(Settings.shared['path'], "artifacts"))
# Settings.artifact['path'] is deprecated, use `storage_path` instead
Settings.artifacts['path']         = Settings.artifacts['storage_path']
Settings.artifacts['max_size'] ||= 100 # in megabytes
M
Micaël Bergeron 已提交
181 182 183
Settings.artifacts['object_store'] ||= Settingslogic.new({})
Settings.artifacts['object_store']['enabled'] = false if Settings.artifacts['object_store']['enabled'].nil?
Settings.artifacts['object_store']['remote_directory'] ||= nil
184
Settings.artifacts['object_store']['direct_upload'] = false if Settings.artifacts['object_store']['direct_upload'].nil?
M
Micaël Bergeron 已提交
185
Settings.artifacts['object_store']['background_upload'] = true if Settings.artifacts['object_store']['background_upload'].nil?
186
Settings.artifacts['object_store']['proxy_download'] = false if Settings.artifacts['object_store']['proxy_download'].nil?
M
Micaël Bergeron 已提交
187 188
# Convert upload connection settings to use string keys, to make Fog happy
Settings.artifacts['object_store']['connection']&.deep_stringify_keys!
K
Kamil Trzcinski 已提交
189

190 191 192 193
#
# Registry
#
Settings['registry'] ||= Settingslogic.new({})
194 195
Settings.registry['enabled']       ||= false
Settings.registry['host']          ||= "example.com"
196
Settings.registry['port']          ||= nil
197 198 199
Settings.registry['api_url']       ||= "http://localhost:5000/"
Settings.registry['key']           ||= nil
Settings.registry['issuer']        ||= nil
K
Kamil Trzcinski 已提交
200
Settings.registry['host_port']     ||= [Settings.registry['host'], Settings.registry['port']].compact.join(':')
201
Settings.registry['path']            = Settings.absolute(Settings.registry['path'] || File.join(Settings.shared['path'], 'registry'))
202

203
#
K
Kamil Trzcinski 已提交
204
# Pages
205
#
K
Kamil Trzcinski 已提交
206
Settings['pages'] ||= Settingslogic.new({})
Z
Zeger-Jan van de Weg 已提交
207 208 209 210 211 212 213 214 215
Settings.pages['enabled']           = false if Settings.pages['enabled'].nil?
Settings.pages['path']              = Settings.absolute(Settings.pages['path'] || File.join(Settings.shared['path'], "pages"))
Settings.pages['https']             = false if Settings.pages['https'].nil?
Settings.pages['host']              ||= "example.com"
Settings.pages['port']              ||= Settings.pages.https ? 443 : 80
Settings.pages['protocol']          ||= Settings.pages.https ? "https" : "http"
Settings.pages['url']               ||= Settings.__send__(:build_pages_url)
Settings.pages['external_http']     ||= false unless Settings.pages['external_http'].present?
Settings.pages['external_https']    ||= false unless Settings.pages['external_https'].present?
Z
Zeger-Jan van de Weg 已提交
216
Settings.pages['artifacts_server']  ||= Settings.pages['enabled'] if Settings.pages['artifacts_server'].nil?
K
Kamil Trzcinski 已提交
217

M
Marin Jankovski 已提交
218 219 220 221
#
# Git LFS
#
Settings['lfs'] ||= Settingslogic.new({})
M
Marin Jankovski 已提交
222
Settings.lfs['enabled']      = true if Settings.lfs['enabled'].nil?
223
Settings.lfs['storage_path'] = Settings.absolute(Settings.lfs['storage_path'] || File.join(Settings.shared['path'], "lfs-objects"))
224
Settings.lfs['object_store'] ||= Settingslogic.new({})
225 226
Settings.lfs['object_store']['enabled'] = false if Settings.lfs['object_store']['enabled'].nil?
Settings.lfs['object_store']['remote_directory'] ||= nil
A
Alessio Caiazza 已提交
227
Settings.lfs['object_store']['direct_upload'] = false if Settings.lfs['object_store']['direct_upload'].nil?
228
Settings.lfs['object_store']['background_upload'] = true if Settings.lfs['object_store']['background_upload'].nil?
229
Settings.lfs['object_store']['proxy_download'] = false if Settings.lfs['object_store']['proxy_download'].nil?
230 231
# Convert upload connection settings to use string keys, to make Fog happy
Settings.lfs['object_store']['connection']&.deep_stringify_keys!
M
Marin Jankovski 已提交
232

233 234 235 236 237 238
#
# Uploads
#
Settings['uploads'] ||= Settingslogic.new({})
Settings.uploads['storage_path'] = Settings.absolute(Settings.uploads['storage_path'] || 'public')
Settings.uploads['base_dir'] = Settings.uploads['base_dir'] || 'uploads/-/system'
239
Settings.uploads['object_store'] ||= Settingslogic.new({})
240 241
Settings.uploads['object_store']['enabled'] = false if Settings.uploads['object_store']['enabled'].nil?
Settings.uploads['object_store']['remote_directory'] ||= 'uploads'
242
Settings.uploads['object_store']['direct_upload'] = false if Settings.uploads['object_store']['direct_upload'].nil?
243
Settings.uploads['object_store']['background_upload'] = true if Settings.uploads['object_store']['background_upload'].nil?
244
Settings.uploads['object_store']['proxy_download'] = false if Settings.uploads['object_store']['proxy_download'].nil?
245 246
# Convert upload connection settings to use string keys, to make Fog happy
Settings.uploads['object_store']['connection']&.deep_stringify_keys!
247

K
Kamil Trzcinski 已提交
248 249 250 251
#
# Mattermost
#
Settings['mattermost'] ||= Settingslogic.new({})
K
Kamil Trzcinski 已提交
252 253
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
K
Kamil Trzcinski 已提交
254

255 256 257
#
# Gravatar
#
R
Riyad Preukschas 已提交
258
Settings['gravatar'] ||= Settingslogic.new({})
259
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
260
Settings.gravatar['plain_url']  ||= 'https://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
261
Settings.gravatar['ssl_url']    ||= 'https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
262
Settings.gravatar['host']         = Settings.host_without_www(Settings.gravatar['plain_url'])
R
Riyad Preukschas 已提交
263

264 265 266 267
#
# Cron Jobs
#
Settings['cron_jobs'] ||= Settingslogic.new({})
268 269 270
Settings.cron_jobs['stuck_ci_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_ci_jobs_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['stuck_ci_jobs_worker']['job_class'] = 'StuckCiJobsWorker'
271
Settings.cron_jobs['pipeline_schedule_worker'] ||= Settingslogic.new({})
272
Settings.cron_jobs['pipeline_schedule_worker']['cron'] ||= '19 * * * *'
273
Settings.cron_jobs['pipeline_schedule_worker']['job_class'] = 'PipelineScheduleWorker'
274
Settings.cron_jobs['expire_build_artifacts_worker'] ||= Settingslogic.new({})
275
Settings.cron_jobs['expire_build_artifacts_worker']['cron'] ||= '50 * * * *'
276
Settings.cron_jobs['expire_build_artifacts_worker']['job_class'] = 'ExpireBuildArtifactsWorker'
J
Jacob Vosmaer 已提交
277 278
Settings.cron_jobs['repository_check_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_check_worker']['cron'] ||= '20 * * * *'
279
Settings.cron_jobs['repository_check_worker']['job_class'] = 'RepositoryCheck::BatchWorker'
J
Jacob Vosmaer 已提交
280
Settings.cron_jobs['admin_email_worker'] ||= Settingslogic.new({})
281
Settings.cron_jobs['admin_email_worker']['cron'] ||= '0 0 * * 0'
J
Jacob Vosmaer 已提交
282
Settings.cron_jobs['admin_email_worker']['job_class'] = 'AdminEmailWorker'
283 284 285
Settings.cron_jobs['repository_archive_cache_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_archive_cache_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['repository_archive_cache_worker']['job_class'] = 'RepositoryArchiveCacheWorker'
286 287 288
Settings.cron_jobs['import_export_project_cleanup_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['import_export_project_cleanup_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['import_export_project_cleanup_worker']['job_class'] = 'ImportExportProjectCleanupWorker'
289 290 291
Settings.cron_jobs['requests_profiles_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['requests_profiles_worker']['cron'] ||= '0 0 * * *'
Settings.cron_jobs['requests_profiles_worker']['job_class'] = 'RequestsProfilesWorker'
292 293 294
Settings.cron_jobs['remove_expired_members_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_expired_members_worker']['cron'] ||= '10 0 * * *'
Settings.cron_jobs['remove_expired_members_worker']['job_class'] = 'RemoveExpiredMembersWorker'
D
Douwe Maan 已提交
295 296 297
Settings.cron_jobs['remove_expired_group_links_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_expired_group_links_worker']['cron'] ||= '10 0 * * *'
Settings.cron_jobs['remove_expired_group_links_worker']['job_class'] = 'RemoveExpiredGroupLinksWorker'
298
Settings.cron_jobs['prune_old_events_worker'] ||= Settingslogic.new({})
299
Settings.cron_jobs['prune_old_events_worker']['cron'] ||= '0 */6 * * *'
300
Settings.cron_jobs['prune_old_events_worker']['job_class'] = 'PruneOldEventsWorker'
301

Y
Yorick Peterse 已提交
302 303 304
Settings.cron_jobs['trending_projects_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['trending_projects_worker']['cron'] = '0 1 * * *'
Settings.cron_jobs['trending_projects_worker']['job_class'] = 'TrendingProjectsWorker'
305 306 307
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker']['cron'] ||= '20 0 * * *'
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker']['job_class'] = 'RemoveUnreferencedLfsObjectsWorker'
308 309 310
Settings.cron_jobs['stuck_import_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_import_jobs_worker']['cron'] ||= '15 * * * *'
Settings.cron_jobs['stuck_import_jobs_worker']['job_class'] = 'StuckImportJobsWorker'
S
Sean McGivern 已提交
311
Settings.cron_jobs['gitlab_usage_ping_worker'] ||= Settingslogic.new({})
312
Settings.cron_jobs['gitlab_usage_ping_worker']['cron'] ||= Settings.__send__(:cron_for_usage_ping)
S
Sean McGivern 已提交
313
Settings.cron_jobs['gitlab_usage_ping_worker']['job_class'] = 'GitlabUsagePingWorker'
Y
Yorick Peterse 已提交
314

315 316 317 318
Settings.cron_jobs['schedule_update_user_activity_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['schedule_update_user_activity_worker']['cron'] ||= '30 0 * * *'
Settings.cron_jobs['schedule_update_user_activity_worker']['job_class'] = 'ScheduleUpdateUserActivityWorker'

A
Alexander Randa 已提交
319 320 321 322
Settings.cron_jobs['remove_old_web_hook_logs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_old_web_hook_logs_worker']['cron'] ||= '40 0 * * *'
Settings.cron_jobs['remove_old_web_hook_logs_worker']['job_class'] = 'RemoveOldWebHookLogsWorker'

323 324 325 326
Settings.cron_jobs['stuck_merge_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_merge_jobs_worker']['cron'] ||= '0 */2 * * *'
Settings.cron_jobs['stuck_merge_jobs_worker']['job_class'] = 'StuckMergeJobsWorker'

327 328 329 330
Settings.cron_jobs['pages_domain_verification_cron_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['pages_domain_verification_cron_worker']['cron'] ||= '*/15 * * * *'
Settings.cron_jobs['pages_domain_verification_cron_worker']['job_class'] = 'PagesDomainVerificationCronWorker'

331 332 333
Settings.cron_jobs['issue_due_scheduler_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['issue_due_scheduler_worker']['cron'] ||= '50 00 * * *'
Settings.cron_jobs['issue_due_scheduler_worker']['job_class'] = 'IssueDueSchedulerWorker'
S
Stuart Nelson 已提交
334

S
Stan Hu 已提交
335 336 337 338 339 340
#
# Sidekiq
#
Settings['sidekiq'] ||= Settingslogic.new({})
Settings['sidekiq']['log_format'] ||= 'default'

341 342 343 344
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
345 346
Settings.gitlab_shell['path']           = Settings.absolute(Settings.gitlab_shell['path'] || Settings.gitlab['user_home'] + '/gitlab-shell/')
Settings.gitlab_shell['hooks_path']     = Settings.absolute(Settings.gitlab_shell['hooks_path'] || Settings.gitlab['user_home'] + '/gitlab-shell/hooks/')
347
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
348 349
Settings.gitlab_shell['receive_pack']   = true if Settings.gitlab_shell['receive_pack'].nil?
Settings.gitlab_shell['upload_pack']    = true if Settings.gitlab_shell['upload_pack'].nil?
D
Dmitriy Zaporozhets 已提交
350
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
351 352 353
Settings.gitlab_shell['ssh_port']     ||= 22
Settings.gitlab_shell['ssh_user']     ||= Settings.gitlab.user
Settings.gitlab_shell['owner_group']  ||= Settings.gitlab.user
354
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.__send__(:build_gitlab_shell_ssh_path_prefix)
355
Settings.gitlab_shell['git_timeout'] ||= 10800
R
Riyad Preukschas 已提交
356

357 358 359 360 361 362
#
# Workhorse
#
Settings['workhorse'] ||= Settingslogic.new({})
Settings.workhorse['secret_file'] ||= Rails.root.join('.gitlab_workhorse_secret')

363 364 365 366 367
#
# Repositories
#
Settings['repositories'] ||= Settingslogic.new({})
Settings.repositories['storages'] ||= {}
368 369 370 371 372 373 374
unless Settings.repositories.storages['default']
  Settings.repositories.storages['default'] ||= {}
  # We set the path only if the default storage doesn't exist, in case it exists
  # but follows the pre-9.0 configuration structure. `6_validations.rb` initializer
  # will validate all storages and throw a relevant error to the user if necessary.
  Settings.repositories.storages['default']['path'] ||= Settings.gitlab['user_home'] + '/repositories/'
end
375

376
Settings.repositories.storages.each do |key, storage|
377
  Settings.repositories.storages[key] = Gitlab::GitalyClient::StorageSettings.new(storage)
378 379
end

380 381 382 383 384 385 386
#
# The repository_downloads_path is used to remove outdated repository
# archives, if someone has it configured incorrectly, and it points
# to the path where repositories are stored this can cause some
# data-integrity issue. In this case, we sets it to the default
# repository_downloads_path value.
#
387
repositories_storages          = Settings.repositories.storages.values
388
repository_downloads_path      = Settings.gitlab['repository_downloads_path'].to_s.gsub(%r{/$}, '')
389 390
repository_downloads_full_path = File.expand_path(repository_downloads_path, Settings.gitlab['user_home'])

391
if repository_downloads_path.blank? || repositories_storages.any? { |rs| [repository_downloads_path, repository_downloads_full_path].include?(rs.legacy_disk_path.gsub(%r{/$}, '')) }
392 393 394
  Settings.gitlab['repository_downloads_path'] = File.join(Settings.shared['path'], 'cache/archive')
end

395 396 397
#
# Backup
#
R
Riyad Preukschas 已提交
398
Settings['backup'] ||= Settingslogic.new({})
D
Dmitriy Zaporozhets 已提交
399
Settings.backup['keep_time']  ||= 0
V
Valery Sizov 已提交
400
Settings.backup['pg_schema']    = nil
401
Settings.backup['path']         = Settings.absolute(Settings.backup['path'] || "tmp/backups/")
402
Settings.backup['archive_permissions'] ||= 0600
403
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
404
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
405
Settings.backup['upload']['encryption'] ||= nil
406
Settings.backup['upload']['storage_class'] ||= nil
R
Riyad Preukschas 已提交
407

408 409 410
#
# Git
#
R
Riyad Preukschas 已提交
411
Settings['git'] ||= Settingslogic.new({})
412
Settings.git['bin_path'] ||= '/usr/bin/git'
413

414 415 416
# Important: keep the satellites.path setting until GitLab 9.0 at
# least. This setting is fed to 'rm -rf' in
# db/migrate/20151023144219_remove_satellites.rb
R
Riyad Preukschas 已提交
417
Settings['satellites'] ||= Settingslogic.new({})
418
Settings.satellites['path'] = Settings.absolute(Settings.satellites['path'] || "tmp/repo_satellites/")
419 420 421 422 423

#
# Extra customization
#
Settings['extra'] ||= Settingslogic.new({})
424

425 426 427 428 429
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
430
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
431
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
432 433 434 435
Settings.rack_attack.git_basic_auth['maxretry'] ||= 10
Settings.rack_attack.git_basic_auth['findtime'] ||= 1.minute
Settings.rack_attack.git_basic_auth['bantime'] ||= 1.hour

436 437 438 439 440
#
# Gitaly
#
Settings['gitaly'] ||= Settingslogic.new({})

441 442 443 444 445 446 447 448 449
#
# Webpack settings
#
Settings['webpack'] ||= Settingslogic.new({})
Settings.webpack['dev_server'] ||= Settingslogic.new({})
Settings.webpack.dev_server['enabled'] ||= false
Settings.webpack.dev_server['host']    ||= 'localhost'
Settings.webpack.dev_server['port']    ||= 3808

450
#
451
# Monitoring settings
452
#
453
Settings['monitoring'] ||= Settingslogic.new({})
P
Pawel Chojnacki 已提交
454
Settings.monitoring['ip_whitelist'] ||= ['127.0.0.1/8']
455
Settings.monitoring['unicorn_sampler_interval'] ||= 10
P
Pawel Chojnacki 已提交
456
Settings.monitoring['ruby_sampler_interval'] ||= 60
457 458 459 460
Settings.monitoring['sidekiq_exporter'] ||= Settingslogic.new({})
Settings.monitoring.sidekiq_exporter['enabled'] ||= false
Settings.monitoring.sidekiq_exporter['address'] ||= 'localhost'
Settings.monitoring.sidekiq_exporter['port'] ||= 3807
461

462 463 464 465 466
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
467
  Settings.gitlab['default_can_create_group'] = true
468
  Settings.gitlab['default_can_create_team']  = false
R
Robert Speicher 已提交
469
end
470 471

# Force a refresh of application settings at startup
472
ApplicationSetting.expire