Commit 361047a7 authored by Kamil Trzcinski's avatar Kamil Trzcinski Committed by James Edwards-Jones

Updated according to comments

parent fd7756ec
...@@ -24,9 +24,9 @@ class PagesDomain < ActiveRecord::Base ...@@ -24,9 +24,9 @@ class PagesDomain < ActiveRecord::Base
return unless domain return unless domain
if certificate if certificate
return "https://#{domain}" "https://#{domain}"
else else
return "http://#{domain}" "http://#{domain}"
end end
end end
......
module Projects module Projects
class class UpdatePagesService < BaseService
UpdatePagesService < BaseService
BLOCK_SIZE = 32.kilobytes BLOCK_SIZE = 32.kilobytes
MAX_SIZE = 1.terabyte MAX_SIZE = 1.terabyte
SITE_PATH = 'public/' SITE_PATH = 'public/'
......
- page_title "Pages" - page_title 'Pages'
%h3.page_title %h3.page_title
Pages Pages
- if Gitlab.config.pages.external_http || Gitlab.config.pages.external_https - if Gitlab.config.pages.external_http || Gitlab.config.pages.external_https
= link_to new_namespace_project_pages_domain_path(@project.namespace, @project), class: "btn btn-new pull-right", title: "New Domain" do = link_to new_namespace_project_pages_domain_path(@project.namespace, @project), class: 'btn btn-new pull-right', title: 'New Domain' do
%i.fa.fa-plus %i.fa.fa-plus
New Domain New Domain
%p.light %p.light
With GitLab Pages you can host for free your static websites on GitLab. With GitLab Pages you can host your static websites on GitLab.
Combined with the power of GitLab CI and the help of GitLab Runner Combined with the power of GitLab CI and the help of GitLab Runner
you can deploy static pages for your individual projects, your user or your group. you can deploy static pages for your individual projects, your user or your group.
......
...@@ -10,22 +10,21 @@ ...@@ -10,22 +10,21 @@
Domain Domain
.col-sm-10 .col-sm-10
= f.text_field :domain, required: true, autocomplete: 'off', class: 'form-control' = f.text_field :domain, required: true, autocomplete: 'off', class: 'form-control'
%span.help-inline * required
- if Gitlab.config.pages.external_https - if Gitlab.config.pages.external_https
.form-group .form-group
= f.label :certificate, class: 'control-label' do = f.label :certificate, class: 'control-label' do
Certificate (PEM) Certificate (PEM)
.col-sm-10 .col-sm-10
= f.text_area :certificate, rows: 5, class: 'form-control', value: '' = f.text_area :certificate, rows: 5, class: 'form-control'
%span.help-inline Upload a certificate for your domain with all intermediates %span.help-inline Upload a certificate for your domain with all intermediates
.form-group .form-group
= f.label :key, class: 'control-label' do = f.label :key, class: 'control-label' do
Key (PEM) Key (PEM)
.col-sm-10 .col-sm-10
= f.text_area :key, rows: 5, class: 'form-control', value: '' = f.text_area :key, rows: 5, class: 'form-control'
%span.help-inline Upload a certificate for your domain with all intermediates %span.help-inline Upload a private key for your certificate
- else - else
.nothing-here-block .nothing-here-block
Support for custom certificates is disabled. Support for custom certificates is disabled.
......
- page_title 'Pages' - page_title 'New Pages Domain'
%h3.page_title %h3.page_title
New Pages Domain New Pages Domain
%hr.clearfix %hr.clearfix
......
- page_title "#{@domain.domain}", "Pages Domain" - page_title "#{@domain.domain}", 'Pages Domains'
%h3.page-title %h3.page-title
Pages Domain Pages Domain
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment