diff options
author | Richard Hancock <rjhancock@tapenvy.us> | 2018-07-10 10:32:53 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-07-10 10:32:53 +0000 |
commit | 54e127a8bb758a0c4280849914539be16c2c70f9 (patch) | |
tree | 6c65946dab52aa3b0de44e5f796446e842e1229b /doc/install | |
parent | 0008961dacb54ce2e56875ef31ff92220153f06b (diff) | |
download | gitlab-ce-54e127a8bb758a0c4280849914539be16c2c70f9.tar.gz |
Document update for GitLab Pages users.
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/installation.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index 259d8f73a22..4b68090f8d3 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -447,6 +447,15 @@ You can specify a different Git repository by providing it as an extra parameter sudo -u git -H bundle exec rake "gitlab:workhorse:install[/home/git/gitlab-workhorse,https://example.com/gitlab-workhorse.git]" RAILS_ENV=production +### Install gitlab-pages + +GitLab-Pages uses [GNU Make](https://www.gnu.org/software/make/). This step is optional and only needed if you wish to host static sites from within GitLab. The following commands will install GitLab-Pages in `/home/git/gitlab-pages`. For additional setup steps, please consult the [administration guide](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/administration/pages/source.md) for your version of GitLab as the GitLab Pages daemon can be ran several different ways. + + cd /home/git + sudo -u git -H git clone https://gitlab.com/gitlab-org/gitlab-pages.git + cd gitlab-pages + sudo -u git -H git checkout v$(</home/git/gitlab/GITLAB_PAGES_VERSION) + sudo -u git -H make ### Initialize Database and Activate Advanced Features |