debian-mirror-gitlab/app/views/projects/pages/_ssl_limitations_warning.html.haml

8 lines
830 B
Text
Raw Normal View History

2020-03-13 15:44:24 +05:30
.bs-callout.bs-callout-warning
2021-01-29 00:20:46 +05:30
= sprite_icon("warning-solid", css_class: "gl-text-orange-600")
2020-03-13 15:44:24 +05:30
%strong= _("Warning:")
- pages_host = Gitlab.config.pages.host
2022-05-07 20:08:51 +05:30
- docs_link_start = "<a href='#{help_page_path('user/project/pages/introduction', anchor: 'subdomains-of-subdomains')}' target='_blank' rel='noopener noreferrer'>".html_safe
2021-04-29 21:17:54 +05:30
- link_end = '</a>'.html_safe
2022-05-07 20:08:51 +05:30
= s_("GitLabPages|When using Pages under the general domain of a GitLab instance (%{pages_host}), you cannot use HTTPS with subdomains of subdomains. If your namespace or groupname contains a dot, it does not work. This is a limitation of the HTTP Over TLS protocol. HTTP pages work if you don't redirect HTTP to HTTPS. %{docs_link_start}Learn more.%{link_end}").html_safe % { pages_host: pages_host, docs_link_start: docs_link_start, link_end: link_end }