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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
a691e9f4
Commit
a691e9f4
authored
Dec 18, 2015
by
Achilleas Pipinellis
Committed by
James Edwards-Jones
Jan 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanup, use gitlab.io as an example domain for GP
parent
d26eadf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
22 deletions
+17
-22
doc/pages/administration.md
doc/pages/administration.md
+17
-22
No files found.
doc/pages/administration.md
View file @
a691e9f4
...
...
@@ -12,26 +12,26 @@ GitLab EE instance.
1.
You need to properly configure your DNS to point to the domain that pages
will be served
1.
Pages use a separate
n
ginx configuration file which needs to be explicitly
1.
Pages use a separate
N
ginx configuration file which needs to be explicitly
added in the server under which GitLab EE runs
Both of these settings are described in detail in the sections below.
### DNS configuration
GitLab Pages expect to run on their own virtual host. In your DNS
you need to
add a
[
wildcard DNS A record
][
wiki-wildcard-dns
]
pointing to the host that
GitLab runs. For example, an entry would look like this:
GitLab Pages expect to run on their own virtual host. In your DNS
server/provider
you need to add a
[
wildcard DNS A record
][
wiki-wildcard-dns
]
pointing to the
host that
GitLab runs. For example, an entry would look like this:
```
*.gitlab
pages.com
. 60 IN A 1.2.3.4
*.gitlab
.io
. 60 IN A 1.2.3.4
```
where
`gitlab
pages.com
`
is the domain under which GitLab Pages will be served
where
`gitlab
.io
`
is the domain under which GitLab Pages will be served
and
`1.2.3.4`
is the IP address of your GitLab instance.
It is strongly advised to
**not**
use the GitLab domain to serve user pages.
See
[
security
](
#security
)
.
For more information see the
[
security section
](
#security
)
.
### Omnibus package installations
...
...
@@ -58,7 +58,7 @@ See the relevant documentation at <http://doc.gitlab.com/omnibus/settings/pages.
# The domain under which the pages are served:
# http://group.example.com/project
# or project path can be a group page: group.example.com
host:
example.com
host:
gitlab.io
port: 80 # Set to 443 if you serve the pages with HTTPS
https: false # Set to true if you serve the pages with HTTPS
```
...
...
@@ -71,7 +71,7 @@ See the relevant documentation at <http://doc.gitlab.com/omnibus/settings/pages.
```
Don't forget to add your domain name in the Nginx config. For example if
your GitLab pages domain is `gitlab
pages.com
`, replace
your GitLab pages domain is `gitlab
.io
`, replace
```bash
server_name ~^(?<group>.*)\.YOUR_GITLAB_PAGES\.DOMAIN$;
...
...
@@ -80,16 +80,11 @@ See the relevant documentation at <http://doc.gitlab.com/omnibus/settings/pages.
with
```
server_name
~^(?<group>.*)\.gitlabpages\.com$
;
server_name
*.gitlab.io
;
```
You must be extra careful to not remove the backslashes. If you are using
a subdomain, make sure to escape all dots (`.`) with a backslash (\).
For example `pages.gitlab.io` would be:
```
server_name ~^(?<group>.*)\.pages\.gitlab\.io$;
```
You must be add `*` in front of your domain, this is required to catch all
subdomains of `gitlab.io`.
1.
Restart Nginx and GitLab:
...
...
@@ -115,7 +110,7 @@ required.
# The domain under which the pages are served:
# http://group.example.com/project
# or project path can be a group page: group.example.com
host:
example.com
host:
gitlab.io
port: 443 # Set to 443 if you serve the pages with HTTPS
https: true # Set to true if you serve the pages with HTTPS
```
...
...
@@ -128,13 +123,13 @@ required.
```
Make sure to edit the config to add your domain as well as correctly point
to the right location
where the SSL certificates reside. After all changes
restart Nginx
.
to the right location
of the SSL certificate files. Restart Nginx for the
changes to take effect
.
## Set maximum pages size
The maximum size of the unpacked archive
can be configured in the Admin area
under the Application settings in the
**Maximum size of pages (MB)**
.
The maximum size of the unpacked archive
per project can be configured in the
Admin area
under the Application settings in the
**Maximum size of pages (MB)**
.
The default is 100MB.
## Change storage path
...
...
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