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

https_redirect.html « layouts - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69b88b369f5de7b599d97c1d814900cb940e1044 (plain)
1
2
3
4
5
6
7
8
9
<% if ENV['NANOC_ENV'] == 'production' %>
<script type="text/javascript">
  // Redirect to https with javascript
  var host = "<%= @config[:domain] %>";
  if ((host == window.location.host) && (window.location.protocol != 'https:')) {
    window.location = window.location.toString().replace(/^http:/, "https:");
  }
</script>
<% end %>