diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-02-24 18:14:50 +0200 |
---|---|---|
committer | James Edwards-Jones <jedwardsjones@gitlab.com> | 2017-01-31 22:55:31 +0000 |
commit | 7e7da5b2cbce6f4edab40f92d664fc4030314121 (patch) | |
tree | ceda6538b7231ccdf684011f9c14a5fde1232653 /doc/pages/README.md | |
parent | 69854d9786c5080c32a982f0dda5d29fe9f92f46 (diff) | |
download | gitlab-ce-7e7da5b2cbce6f4edab40f92d664fc4030314121.tar.gz |
Add table explaining the types of pages
[ci skip]
Diffstat (limited to 'doc/pages/README.md')
-rw-r--r-- | doc/pages/README.md | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/doc/pages/README.md b/doc/pages/README.md index 78100fa452b..e36b651b9b3 100644 --- a/doc/pages/README.md +++ b/doc/pages/README.md @@ -36,10 +36,14 @@ deploy static pages for your individual projects, your user or your group. ## Getting started with GitLab Pages +> **Note:** +> In the rest of this document we will assume that the general domain name that +> is used for GitLab Pages is `example.io`. + GitLab Pages rely heavily on GitLab CI and its ability to upload [artifacts](../ci/yaml/README.md#artifacts). -In general there are two kinds of pages one might create: +In general there are two types of pages one might create: - Pages per user/group (`username.example.io`) - Pages per project (`username.example.io/projectname`) @@ -47,9 +51,12 @@ In general there are two kinds of pages one might create: In GitLab, usernames and groupnames are unique and often people refer to them as namespaces. There can be only one namespace in a GitLab instance. -> **Note:** -> In the rest of this document we will assume that the general domain name that -> is used for GitLab Pages is `example.io`. +| Type of GitLab Pages | Project name | Website served under | +| -------------------- | --------------- | -------------------- | +| User pages | `username.example.io` | `http(s)://username.example.io` | +| Group pages | `groupname.example.io` | `http(s)://groupname.example.io` | +| Project pages owned by a user | `projectname` | `http(s)://username.example.io/projectname` | +| Project pages owned by a group | `projectname` | `http(s)://groupname.example.io/projectname`| > **Warning:** > There are some known [limitations](#limitations) regarding namespaces served |