summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_performance.html.haml
blob: 86a01e1785ecfc4db454434af2a6313a19035918 (plain)
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
= gitlab_ui_form_for @application_setting, url: network_admin_application_settings_path(anchor: 'js-performance-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      - help_link = help_page_path('administration/operations/fast_ssh_key_lookup')
      - help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: help_link }
      = f.gitlab_ui_checkbox_component :authorized_keys_enabled, _('Use authorized_keys file to authenticate SSH keys'),
      help_text: _('Authenticate user SSH keys without requiring additional configuration. Performance of GitLab can be improved by using the GitLab database instead. %{link_start}How do I configure authentication using the GitLab database? %{link_end}').html_safe % { link_start: help_link_start, link_end: '</a>'.html_safe}
    .form-group
      = f.label :raw_blob_request_limit, _('Raw blob request rate limit per minute'), class: 'label-bold'
      = f.number_field :raw_blob_request_limit, class: 'form-control gl-form-input'
      .form-text.text-muted
        = _('Maximum number of requests per minute for each raw path (default is 300). Set to 0 to disable throttling.')
    .form-group
      = f.label :push_event_hooks_limit, class: 'label-bold'
      = f.number_field :push_event_hooks_limit, class: 'form-control gl-form-input'
      .form-text.text-muted
        = _('Maximum number of changes (branches or tags) in a single push for which webhooks and services trigger (default is 3).')
    .form-group
      = f.label :push_event_activities_limit, class: 'label-bold'
      = f.number_field :push_event_activities_limit, class: 'form-control gl-form-input'
      .form-text.text-muted
        = _('Threshold number of changes (branches or tags) in a single push above which a bulk push event is created (default is 3).')

  = f.submit _('Save changes'), pajamas_button: true