2019-02-20 11:56:19 -05:00
|
|
|
= form_for @application_setting, url: network_admin_application_settings_path(anchor: 'js-performance-settings'), html: { class: 'fieldset-form' } do |f|
|
2018-04-04 05:44:32 -04:00
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
2018-06-13 03:40:55 -04:00
|
|
|
.form-group
|
|
|
|
.form-check
|
|
|
|
= f.check_box :authorized_keys_enabled, class: 'form-check-input'
|
|
|
|
= f.label :authorized_keys_enabled, class: 'form-check-label' do
|
|
|
|
Write to "authorized_keys" file
|
|
|
|
.form-text.text-muted
|
|
|
|
By default, we write to the "authorized_keys" file to support Git
|
|
|
|
over SSH without additional configuration. GitLab can be optimized
|
|
|
|
to authenticate SSH keys via the database file. Only uncheck this
|
|
|
|
if you have configured your OpenSSH server to use the
|
|
|
|
AuthorizedKeysCommand. Click on the help icon for more details.
|
|
|
|
= link_to icon('question-circle'), help_page_path('administration/operations/fast_ssh_key_lookup')
|
2018-04-04 05:44:32 -04:00
|
|
|
|
|
|
|
= f.submit 'Save changes', class: "btn btn-success"
|