summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_pages.html.haml
blob: 1282a032f52bcfb4cf60d1186b49979459a1a119 (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
27
28
29
30
31
32
33
34
35
= form_for @application_setting, url: preferences_admin_application_settings_path(anchor: 'js-pages-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = f.label :max_pages_size, 'Maximum size of pages (MB)', class: 'label-bold'
      = f.number_field :max_pages_size, class: 'form-control'
      .form-text.text-muted
        = _("0 for unlimited")
    .form-group
      .form-check
        = f.check_box :pages_domain_verification_enabled, class: 'form-check-input'
        = f.label :pages_domain_verification_enabled, class: 'form-check-label' do
          = _("Require users to prove ownership of custom domains")
      .form-text.text-muted
        = _("Domain verification is an essential security measure for public GitLab sites. Users are required to demonstrate they control a domain before it is enabled")
        = link_to icon('question-circle'), help_page_path('user/project/pages/custom_domains_ssl_tls_certification/index.md', anchor: '4-verify-the-domains-ownership')
    %h5
      = _("Configure Let's Encrypt")
    %p
      - lets_encrypt_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: "https://letsencrypt.org/" }
      = _("%{lets_encrypt_link_start}Let's Encrypt%{lets_encrypt_link_end} is a free, automated, and open certificate authority (CA), that give digital certificates in order to enable HTTPS (SSL/TLS) for websites.").html_safe % { lets_encrypt_link_start: lets_encrypt_link_start, lets_encrypt_link_end: '</a>'.html_safe }
    .form-group
      = f.label :lets_encrypt_notification_email, _("Email"), class: 'label-bold'
      = f.text_field :lets_encrypt_notification_email, class: 'form-control'
      .form-text.text-muted
        = _("A Let's Encrypt account will be configured for this GitLab installation using your email address. You will receive emails to warn of expiring certificates.")
    .form-group
      .form-check
        = f.check_box :lets_encrypt_terms_of_service_accepted, class: 'form-check-input'
        = f.label :lets_encrypt_terms_of_service_accepted, class: 'form-check-label' do
          - terms_of_service_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: lets_encrypt_terms_of_service_admin_application_settings_path }
          = _("I have read and agree to the Let's Encrypt %{link_start}Terms of Service%{link_end}").html_safe % { link_start: terms_of_service_link_start, link_end: '</a>'.html_safe }

  = f.submit _('Save changes'), class: "btn btn-success"