Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
34830684
Commit
34830684
authored
Dec 22, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'pages_doc_fixes' into 'master'
Pages doc fixes cc @DouweM See merge request !90
parents
bda5e70f
60bd875b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
8 deletions
+22
-8
doc/pages/README.md
doc/pages/README.md
+19
-8
doc/pages/administration.md
doc/pages/administration.md
+3
-0
No files found.
doc/pages/README.md
View file @
34830684
...
...
@@ -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:
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.
GitLab Runner builds the project
1.
GitLab CI uploads the artifacts
1.
Nginx serves the content
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
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:
1.
Any static content must be placed under a
`public/`
directory
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
for the
`pages`
job are uploaded to GitLab.
...
...
@@ -84,10 +92,14 @@ pages:
artifacts
:
paths
:
-
public
only
:
-
master
```
The example below doesn't use any static site generator, but simply moves all files
from the root of the project to the
`public/`
directory.
The example below doesn't use any static site generator, but simply moves all
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
pages
:
...
...
@@ -105,8 +117,8 @@ pages:
## Example projects
Below is a list of example projects for GitLab Pages with a plain HTML website
or various static site generators.
Contributions are very welcome.
Below is a list of example projects for GitLab Pages with a plain HTML website
or various static site generators.
Contributions are very welcome.
*
[
Plain HTML
](
https://gitlab.com/gitlab-examples/pages-plain-html
)
*
[
Jekyll
](
https://gitlab.com/gitlab-examples/pages-jekyll
)
...
...
@@ -119,10 +131,9 @@ in the artifacts.
## 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
build page.
Sure. All you need to do is download the artifacts archive from the build page.
---
...
...
doc/pages/administration.md
View file @
34830684
...
...
@@ -14,6 +14,9 @@ GitLab EE instance.
will be served
1.
Pages use a separate Nginx configuration file which needs to be explicitly
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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment