Commit 34830684 authored by Douwe Maan's avatar Douwe Maan

Merge branch 'pages_doc_fixes' into 'master'

Pages doc fixes

cc @DouweM 

See merge request !90
parents bda5e70f 60bd875b
...@@ -17,13 +17,14 @@ The steps that are performed from the initialization of a project to the ...@@ -17,13 +17,14 @@ The steps that are performed from the initialization of a project to the
creation of the static content, can be summed up to: creation of the static content, can be summed up to:
1. Create project (its name could be specific according to the case) 1. Create project (its name could be specific according to the case)
1. Enable the GitLab Pages feature under the project's settings
1. Provide a specific job in `.gitlab-ci.yml` 1. Provide a specific job in `.gitlab-ci.yml`
1. GitLab Runner builds the project 1. GitLab Runner builds the project
1. GitLab CI uploads the artifacts 1. GitLab CI uploads the artifacts
1. Nginx serves the content 1. Nginx serves the content
As a user, you should normally be concerned only with the first three items. As a user, you should normally be concerned only with the first three items.
If [shared runners](../ci/runners/README.md) are enabled by your GitLab
administrator, you should be able to use them instead of bringing your own.
In general there are four kinds of pages one might create. This is better In general there are four kinds of pages one might create. This is better
explained with an example so let's make some assumptions. explained with an example so let's make some assumptions.
...@@ -68,6 +69,13 @@ To make use of GitLab Pages, your `.gitlab-ci.yml` must follow the rules below: ...@@ -68,6 +69,13 @@ To make use of GitLab Pages, your `.gitlab-ci.yml` must follow the rules below:
1. Any static content must be placed under a `public/` directory 1. Any static content must be placed under a `public/` directory
1. `artifacts` with a path to the `public/` directory must be defined 1. `artifacts` with a path to the `public/` directory must be defined
Be aware that Pages are by default branch/tag agnostic and their deployment
relies solely on what you specify in `.gitlab-ci.yml`. If you don't limit the
`pages` job with the [`only` parameter](../ci/yaml/README.md#only-and-except),
whenever a new commit is pushed to whatever branch or tag, the Pages will be
overwritten. In the examples below, we limit the Pages to be deployed whenever
a commit is pushed only on the `master` branch, which is advisable to do so.
The pages are created after the build completes successfully and the artifacts The pages are created after the build completes successfully and the artifacts
for the `pages` job are uploaded to GitLab. for the `pages` job are uploaded to GitLab.
...@@ -84,10 +92,14 @@ pages: ...@@ -84,10 +92,14 @@ pages:
artifacts: artifacts:
paths: paths:
- public - public
only:
- master
``` ```
The example below doesn't use any static site generator, but simply moves all files The example below doesn't use any static site generator, but simply moves all
from the root of the project to the `public/` directory. files from the root of the project to the `public/` directory. The `.public`
workaround is so `cp` doesn’t also copy `public/` to itself in an infinite
loop.
```yaml ```yaml
pages: pages:
...@@ -105,8 +117,8 @@ pages: ...@@ -105,8 +117,8 @@ pages:
## Example projects ## Example projects
Below is a list of example projects for GitLab Pages with a plain HTML website or various static site generators. Below is a list of example projects for GitLab Pages with a plain HTML website
Contributions are very welcome. or various static site generators. Contributions are very welcome.
* [Plain HTML](https://gitlab.com/gitlab-examples/pages-plain-html) * [Plain HTML](https://gitlab.com/gitlab-examples/pages-plain-html)
* [Jekyll](https://gitlab.com/gitlab-examples/pages-jekyll) * [Jekyll](https://gitlab.com/gitlab-examples/pages-jekyll)
...@@ -119,10 +131,9 @@ in the artifacts. ...@@ -119,10 +131,9 @@ in the artifacts.
## Frequently Asked Questions ## Frequently Asked Questions
**Q:** Can I download my generated pages? **Q: Can I download my generated pages?**
**A:** Sure. All you need to do is download the artifacts archive from the Sure. All you need to do is download the artifacts archive from the build page.
build page.
--- ---
......
...@@ -14,6 +14,9 @@ GitLab EE instance. ...@@ -14,6 +14,9 @@ GitLab EE instance.
will be served will be served
1. Pages use a separate Nginx configuration file which needs to be explicitly 1. Pages use a separate Nginx configuration file which needs to be explicitly
added in the server under which GitLab EE runs added in the server under which GitLab EE runs
1. Optionally but recommended, you can add some
[shared runners](../ci/runners/README.md) so that your users don't have to
bring their own.
Both of these settings are described in detail in the sections below. Both of these settings are described in detail in the sections below.
......
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