1_settings.rb 20.1 KB
Newer Older
1
require_dependency Rails.root.join('lib/gitlab') # Load Gitlab as soon as possible
2

3
class Settings < Settingslogic
4
  source ENV.fetch('GITLAB_CONFIG') { "#{Rails.root}/config/gitlab.yml" }
5
  namespace Rails.env
6 7

  class << self
8 9
    def gitlab_on_standard_port?
      on_standard_port?(gitlab)
R
Riyad Preukschas 已提交
10
    end
11

12 13
    def host_without_www(url)
      host(url).sub('www.', '')
14
    end
R
Riyad Preukschas 已提交
15

V
Valery Sizov 已提交
16
    def build_gitlab_ci_url
D
Douwe Maan 已提交
17 18 19 20 21 22
      custom_port =
        if on_standard_port?(gitlab)
          nil
        else
          ":#{gitlab.port}"
        end
D
Douwe Maan 已提交
23

24 25 26 27 28 29
      [
        gitlab.protocol,
        "://",
        gitlab.host,
        custom_port,
        gitlab.relative_url_root
V
Valery Sizov 已提交
30 31
      ].join('')
    end
R
Riyad Preukschas 已提交
32

33 34 35 36
    def build_pages_url
      base_url(pages).join('')
    end

37
    def build_gitlab_shell_ssh_path_prefix
38 39
      user_host = "#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}"

40
      if gitlab_shell.ssh_port != 22
41
        "ssh://#{user_host}:#{gitlab_shell.ssh_port}/"
R
Riyad Preukschas 已提交
42
      else
43
        if gitlab_shell.ssh_host.include? ':'
44
          "[#{user_host}]:"
45
        else
46
          "#{user_host}:"
47
        end
R
Riyad Preukschas 已提交
48 49 50
      end
    end

51
    def build_base_gitlab_url
52
      base_url(gitlab).join('')
53 54
    end

R
Riyad Preukschas 已提交
55
    def build_gitlab_url
56
      (base_url(gitlab) + [gitlab.relative_url_root]).join('')
R
Riyad Preukschas 已提交
57
    end
D
Dmitriy Zaporozhets 已提交
58

59 60 61
    # check that values in `current` (string or integer) is a contant in `modul`.
    def verify_constant_array(modul, current, default)
      values = default || []
62
      unless current.nil?
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
        values = []
        current.each do |constant|
          values.push(verify_constant(modul, constant, nil))
        end
        values.delete_if { |value| value.nil? }
      end
      values
    end

    # check that `current` (string or integer) is a contant in `modul`.
    def verify_constant(modul, current, default)
      constant = modul.constants.find{ |name| modul.const_get(name) == current }
      value = constant.nil? ? default : modul.const_get(constant)
      if current.is_a? String
        value = modul.const_get(current.upcase) rescue default
      end
      value
    end
81 82 83

    private

84 85
    def base_url(config)
      custom_port = on_standard_port?(config) ? nil : ":#{config.port}"
D
Douwe Maan 已提交
86
      
87 88 89 90 91
      [
        config.protocol,
        "://",
        config.host,
        custom_port
92 93
      ]
    end
94

95 96 97 98
    def on_standard_port?(config)
      config.port.to_i == (config.https ? 443 : 80)
    end

99 100 101 102 103 104 105 106 107 108
    # Extract the host part of the given +url+.
    def host(url)
      url = url.downcase
      url = "http://#{url}" unless url.start_with?('http')

      # Get rid of the path so that we don't even have to encode it
      url_without_path = url.sub(%r{(https?://[^\/]+)/?.*}, '\1')

      URI.parse(url_without_path).host
    end
109 110
  end
end
R
Riyad Preukschas 已提交
111 112 113

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

116 117 118
# backwards compatibility, we only have one host
if Settings.ldap['enabled'] || Rails.env.test?
  if Settings.ldap['host'].present?
119 120
    # We detected old LDAP configuration syntax. Update the config to make it
    # look like it was entered with the new syntax.
121
    server = Settings.ldap.except('sync_time')
122
    Settings.ldap['servers'] = {
123
      'main' => server
124
    }
125 126
  end

127
  Settings.ldap['servers'].each do |key, server|
128
    server['label'] ||= 'LDAP'
129
    server['timeout'] ||= 10.seconds
130
    server['block_auto_created_users'] = false if server['block_auto_created_users'].nil?
131 132
    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 已提交
133
    server['attributes'] = {} if server['attributes'].nil?
134
    server['provider_name'] ||= "ldap#{key}".downcase
135 136 137
    server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
  end
end
R
Riyad Preukschas 已提交
138 139

Settings['omniauth'] ||= Settingslogic.new({})
140
Settings.omniauth['enabled'] = false if Settings.omniauth['enabled'].nil?
141
Settings.omniauth['auto_sign_in_with_provider'] = false if Settings.omniauth['auto_sign_in_with_provider'].nil?
142
Settings.omniauth['allow_single_sign_on'] = false if Settings.omniauth['allow_single_sign_on'].nil?
143
Settings.omniauth['external_providers'] = [] if Settings.omniauth['external_providers'].nil?
144 145
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?
146
Settings.omniauth['auto_link_saml_user'] = false if Settings.omniauth['auto_link_saml_user'].nil?
147

148
Settings.omniauth['providers'] ||= []
T
tduehr 已提交
149 150 151 152
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 已提交
153

154 155 156
# 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"
157
github_settings = Settings.omniauth['providers'].find { |provider| provider["name"] == "github" }
158 159 160 161 162 163 164 165 166 167

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 已提交
168 169 170 171 172 173 174 175 176 177
  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
178
end
179

180 181 182
Settings['shared'] ||= Settingslogic.new({})
Settings.shared['path'] = File.expand_path(Settings.shared['path'] || "shared", Rails.root)

183
Settings['issues_tracker'] ||= {}
184

185 186 187
#
# GitLab
#
R
Riyad Preukschas 已提交
188
Settings['gitlab'] ||= Settingslogic.new({})
189
Settings.gitlab['default_projects_limit'] ||= 10
190
Settings.gitlab['default_branch_protection'] ||= 2
191
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
192
Settings.gitlab['host']       ||= ENV['GITLAB_HOST'] || 'localhost'
D
Dmitriy Zaporozhets 已提交
193
Settings.gitlab['ssh_host']   ||= Settings.gitlab.host
194
Settings.gitlab['https']        = false if Settings.gitlab['https'].nil?
R
Riyad Preukschas 已提交
195
Settings.gitlab['port']       ||= Settings.gitlab.https ? 443 : 80
196
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
197
Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
198
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
199 200 201
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 已提交
202
Settings.gitlab['email_subject_suffix'] ||= ENV['GITLAB_EMAIL_SUBJECT_SUFFIX'] || ""
203
Settings.gitlab['base_url']   ||= Settings.send(:build_base_gitlab_url)
D
Dmitriy Zaporozhets 已提交
204
Settings.gitlab['url']        ||= Settings.send(:build_gitlab_url)
D
Dmitriy Zaporozhets 已提交
205
Settings.gitlab['user']       ||= 'git'
206 207 208 209 210
Settings.gitlab['user_home']  ||= begin
  Etc.getpwnam(Settings.gitlab['user']).dir
rescue ArgumentError # no user configured
  '/home/' + Settings.gitlab['user']
end
211
Settings.gitlab['time_zone'] ||= nil
D
Dmitriy Zaporozhets 已提交
212
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
213
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
214
Settings.gitlab['restricted_visibility_levels'] = Settings.send(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
215
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
J
Jacob Schatz 已提交
216
Settings.gitlab['issue_closing_pattern'] = '((?:[Cc]los(?:e[sd]?|ing)|[Ff]ix(?:e[sd]|ing)?|[Rr]esolv(?:e[sd]?|ing))(:?) +(?:(?:issues? +)?%{issue_ref}(?:(?:, *| +and +)?)|([A-Z][A-Z0-9_]+-\d+))+)' if Settings.gitlab['issue_closing_pattern'].nil?
217
Settings.gitlab['default_projects_features'] ||= {}
218
Settings.gitlab['webhook_timeout'] ||= 10
219
Settings.gitlab['max_attachment_size'] ||= 10
220
Settings.gitlab['session_expire_delay'] ||= 10080
221 222 223 224 225 226
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?
Settings.gitlab.default_projects_features['snippets']           = false if Settings.gitlab.default_projects_features['snippets'].nil?
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?
227
Settings.gitlab.default_projects_features['visibility_level']   = Settings.send(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
228
Settings.gitlab['domain_whitelist'] ||= []
229
Settings.gitlab['import_sources'] ||= %w[github bitbucket gitlab google_code fogbugz git gitlab_project gitea]
230
Settings.gitlab['trusted_proxies'] ||= []
231
Settings.gitlab['no_todos_messages'] ||= YAML.load_file(Rails.root.join('config', 'no_todos_messages.yml'))
R
Riyad Preukschas 已提交
232

V
Valery Sizov 已提交
233 234 235 236
#
# CI
#
Settings['gitlab_ci'] ||= Settingslogic.new({})
237 238 239 240
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?
Settings.gitlab_ci['builds_path']           = File.expand_path(Settings.gitlab_ci['builds_path'] || "builds/", Rails.root)
241
Settings.gitlab_ci['url']                 ||= Settings.send(:build_gitlab_ci_url)
V
Valery Sizov 已提交
242

D
Douwe Maan 已提交
243 244 245
#
# Reply by email
#
246
Settings['incoming_email'] ||= Settingslogic.new({})
247
Settings.incoming_email['enabled'] = false if Settings.incoming_email['enabled'].nil?
D
Douwe Maan 已提交
248

K
Kamil Trzcinski 已提交
249 250 251 252 253 254
#
# Build Artifacts
#
Settings['artifacts'] ||= Settingslogic.new({})
Settings.artifacts['enabled']      = true if Settings.artifacts['enabled'].nil?
Settings.artifacts['path']         = File.expand_path(Settings.artifacts['path'] || File.join(Settings.shared['path'], "artifacts"), Rails.root)
255
Settings.artifacts['max_size']   ||= 100 # in megabytes
K
Kamil Trzcinski 已提交
256

257 258 259 260
#
# Registry
#
Settings['registry'] ||= Settingslogic.new({})
261 262
Settings.registry['enabled']       ||= false
Settings.registry['host']          ||= "example.com"
263
Settings.registry['port']          ||= nil
264 265 266
Settings.registry['api_url']       ||= "http://localhost:5000/"
Settings.registry['key']           ||= nil
Settings.registry['issuer']        ||= nil
K
Kamil Trzcinski 已提交
267
Settings.registry['host_port']     ||= [Settings.registry['host'], Settings.registry['port']].compact.join(':')
K
Kamil Trzcinski 已提交
268
Settings.registry['path']            = File.expand_path(Settings.registry['path'] || File.join(Settings.shared['path'], 'registry'), Rails.root)
269

270
#
K
Kamil Trzcinski 已提交
271
# Pages
272
#
K
Kamil Trzcinski 已提交
273 274
Settings['pages'] ||= Settingslogic.new({})
Settings.pages['enabled']         = false if Settings.pages['enabled'].nil?
275
Settings.pages['path']            = File.expand_path(Settings.pages['path'] || File.join(Settings.shared['path'], "pages"), Rails.root)
276
Settings.pages['https']           = false if Settings.pages['https'].nil?
277
Settings.pages['host']            ||= "example.com"
278 279 280
Settings.pages['port']            ||= Settings.pages.https ? 443 : 80
Settings.pages['protocol']        ||= Settings.pages.https ? "https" : "http"
Settings.pages['url']             ||= Settings.send(:build_pages_url)
281 282
Settings.pages['external_http']   ||= false if Settings.pages['external_http'].nil?
Settings.pages['external_https']  ||= false if Settings.pages['external_https'].nil?
K
Kamil Trzcinski 已提交
283

M
Marin Jankovski 已提交
284 285 286 287
#
# Git LFS
#
Settings['lfs'] ||= Settingslogic.new({})
M
Marin Jankovski 已提交
288
Settings.lfs['enabled']      = true if Settings.lfs['enabled'].nil?
M
Marin Jankovski 已提交
289 290
Settings.lfs['storage_path'] = File.expand_path(Settings.lfs['storage_path'] || File.join(Settings.shared['path'], "lfs-objects"), Rails.root)

K
Kamil Trzcinski 已提交
291 292 293 294
#
# Mattermost
#
Settings['mattermost'] ||= Settingslogic.new({})
K
Kamil Trzcinski 已提交
295 296
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
K
Kamil Trzcinski 已提交
297

298 299 300
#
# Gravatar
#
R
Riyad Preukschas 已提交
301
Settings['gravatar'] ||= Settingslogic.new({})
302
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
303 304
Settings.gravatar['plain_url']  ||= 'http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
Settings.gravatar['ssl_url']    ||= 'https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
305
Settings.gravatar['host']         = Settings.host_without_www(Settings.gravatar['plain_url'])
R
Riyad Preukschas 已提交
306

307 308 309 310 311
#
# Cron Jobs
#
Settings['cron_jobs'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_ci_builds_worker'] ||= Settingslogic.new({})
312
Settings.cron_jobs['stuck_ci_builds_worker']['cron'] ||= '0 * * * *'
313
Settings.cron_jobs['stuck_ci_builds_worker']['job_class'] = 'StuckCiBuildsWorker'
314
Settings.cron_jobs['expire_build_artifacts_worker'] ||= Settingslogic.new({})
315
Settings.cron_jobs['expire_build_artifacts_worker']['cron'] ||= '50 * * * *'
316
Settings.cron_jobs['expire_build_artifacts_worker']['job_class'] = 'ExpireBuildArtifactsWorker'
J
Jacob Vosmaer 已提交
317 318
Settings.cron_jobs['repository_check_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_check_worker']['cron'] ||= '20 * * * *'
319
Settings.cron_jobs['repository_check_worker']['job_class'] = 'RepositoryCheck::BatchWorker'
J
Jacob Vosmaer 已提交
320
Settings.cron_jobs['admin_email_worker'] ||= Settingslogic.new({})
321
Settings.cron_jobs['admin_email_worker']['cron'] ||= '0 0 * * 0'
J
Jacob Vosmaer 已提交
322
Settings.cron_jobs['admin_email_worker']['job_class'] = 'AdminEmailWorker'
323 324 325
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'
326 327 328
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'
329 330 331
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'
332 333 334
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 已提交
335 336 337
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'
338
Settings.cron_jobs['prune_old_events_worker'] ||= Settingslogic.new({})
339
Settings.cron_jobs['prune_old_events_worker']['cron'] ||= '0 */6 * * *'
340
Settings.cron_jobs['prune_old_events_worker']['job_class'] = 'PruneOldEventsWorker'
341

Y
Yorick Peterse 已提交
342 343 344
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'
345 346 347
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'
Y
Yorick Peterse 已提交
348

349 350 351 352
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
353
Settings.gitlab_shell['path']         ||= Settings.gitlab['user_home'] + '/gitlab-shell/'
354
Settings.gitlab_shell['hooks_path']   ||= Settings.gitlab['user_home'] + '/gitlab-shell/hooks/'
355
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
356 357
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 已提交
358
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
359 360 361 362
Settings.gitlab_shell['ssh_port']     ||= 22
Settings.gitlab_shell['ssh_user']     ||= Settings.gitlab.user
Settings.gitlab_shell['owner_group']  ||= Settings.gitlab.user
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.send(:build_gitlab_shell_ssh_path_prefix)
R
Riyad Preukschas 已提交
363

364 365 366 367 368 369 370 371
#
# Repositories
#
Settings['repositories'] ||= Settingslogic.new({})
Settings.repositories['storages'] ||= {}
# Setting gitlab_shell.repos_path is DEPRECATED and WILL BE REMOVED in version 9.0
Settings.repositories.storages['default'] ||= Settings.gitlab_shell['repos_path'] || Settings.gitlab['user_home'] + '/repositories/'

372 373 374 375 376 377 378 379 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.
#
repositories_storages_path     = Settings.repositories.storages.values
repository_downloads_path      = Settings.gitlab['repository_downloads_path'].to_s.gsub(/\/$/, '')
repository_downloads_full_path = File.expand_path(repository_downloads_path, Settings.gitlab['user_home'])

if repository_downloads_path.blank? || repositories_storages_path.any? { |path| [repository_downloads_path, repository_downloads_full_path].include?(path.gsub(/\/$/, '')) }
  Settings.gitlab['repository_downloads_path'] = File.join(Settings.shared['path'], 'cache/archive')
end

387 388 389
#
# Backup
#
R
Riyad Preukschas 已提交
390
Settings['backup'] ||= Settingslogic.new({})
D
Dmitriy Zaporozhets 已提交
391
Settings.backup['keep_time']  ||= 0
V
Valery Sizov 已提交
392
Settings.backup['pg_schema']    = nil
D
Dmitriy Zaporozhets 已提交
393
Settings.backup['path']         = File.expand_path(Settings.backup['path'] || "tmp/backups/", Rails.root)
394
Settings.backup['archive_permissions'] ||= 0600
395
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
396 397 398 399
# Convert upload connection settings to use symbol keys, to make Fog happy
if Settings.backup['upload']['connection']
  Settings.backup['upload']['connection'] = Hash[Settings.backup['upload']['connection'].map { |k, v| [k.to_sym, v] }]
end
400
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
401
Settings.backup['upload']['encryption'] ||= nil
R
Riyad Preukschas 已提交
402

403 404 405
#
# Git
#
R
Riyad Preukschas 已提交
406
Settings['git'] ||= Settingslogic.new({})
407
Settings.git['max_size']  ||= 20971520 # 20.megabytes
D
Dmitriy Zaporozhets 已提交
408
Settings.git['bin_path']  ||= '/usr/bin/git'
409
Settings.git['timeout']   ||= 10
410

411 412 413
# 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 已提交
414
Settings['satellites'] ||= Settingslogic.new({})
R
Riyad Preukschas 已提交
415
Settings.satellites['path'] = File.expand_path(Settings.satellites['path'] || "tmp/repo_satellites/", Rails.root)
416 417 418 419 420

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

422 423 424 425 426
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
427
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
428
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
429 430 431 432
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

433 434 435 436 437 438
#
# Gitaly
#
Settings['gitaly'] ||= Settingslogic.new({})
Settings.gitaly['socket_path'] ||= ENV['GITALY_SOCKET_PATH']

439 440 441 442 443 444 445 446 447
#
# 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

448 449 450 451 452
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
453
  Settings.gitlab['default_can_create_group'] = true
454
  Settings.gitlab['default_can_create_team']  = false
R
Robert Speicher 已提交
455
end
456 457

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