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

_certificate.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: 42631fca5e872f9a60bf8e20b471d10f0e6dae34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- if @domain.auto_ssl_enabled?
  - if @domain.enabled?
    - if @domain.certificate_text
      %pre
        = @domain.certificate_text
    - else
      .bs-callout.bs-callout-info
        = _("GitLab is obtaining a Let's Encrypt SSL certificate for this domain. This process can take some time. Please try again later.")
  - else
    .bs-callout.bs-callout-warning
      = _("A Let's Encrypt SSL certificate can not be obtained until your domain is verified.")
- else
  - if @domain.certificate_text
    %pre
      = @domain.certificate_text
  - else
    .light
      = _("missing")