Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_dns.html.haml « pages_domains « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 267317196f891fbb0acab4029cb598991e2c60e8 (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
- verification_enabled = Gitlab::CurrentSettings.pages_domain_verification_enabled?
- dns_record = "#{domain_presenter.domain} CNAME #{domain_presenter.project.pages_subdomain}.#{Settings.pages.host}."

.form-group.border-section
  .row
    .col-sm-2
      = _("DNS")
    .col-sm-10
      .input-group
        = text_field_tag :domain_dns, dns_record , class: "monospace js-select-on-focus form-control", readonly: true
        .input-group-append
          = clipboard_button(target: '#domain_dns', class: 'btn-default input-group-text d-none d-sm-block')
      %p.form-text.text-muted
        = _("To access this domain create a new DNS record")
- if verification_enabled
  - verification_record = "#{domain_presenter.verification_domain} TXT #{domain_presenter.keyed_verification_code}"
  .form-group.border-section
    .row
      .col-sm-2
        = _("Verification status")
      .col-sm-10
        .status-badge
          - text, status = domain_presenter.unverified? ? [_('Unverified'), 'badge-danger'] : [_('Verified'), 'badge-success']
          .badge{ class: status }
            = text
          = link_to sprite_icon("redo"), verify_project_pages_domain_path(@project, domain_presenter), method: :post, class: "gl-button btn btn-default has-tooltip", title: _("Retry verification")
        .input-group
          = text_field_tag :domain_verification, verification_record, class: "monospace js-select-on-focus form-control", readonly: true
          .input-group-append
            = clipboard_button(target: '#domain_verification', class: 'btn-default d-none d-sm-block')
        %p.form-text.text-muted
          - link_to_help = link_to(_('verify ownership'), help_page_path('user/project/pages/custom_domains_ssl_tls_certification/index.md', anchor: '4-verify-the-domains-ownership'))
          = _("To %{link_to_help} of your domain, add the above key to a TXT record within your DNS configuration.").html_safe % { link_to_help: link_to_help }