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
Boxiang Sun
gitlab-ce
Commits
5b78aaf1
Commit
5b78aaf1
authored
Oct 05, 2018
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add administrator documentation for Pages access control
parent
a84469a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
0 deletions
+65
-0
doc/administration/pages/index.md
doc/administration/pages/index.md
+27
-0
doc/administration/pages/source.md
doc/administration/pages/source.md
+38
-0
No files found.
doc/administration/pages/index.md
View file @
5b78aaf1
...
@@ -242,6 +242,33 @@ verification requirement. Navigate to `Admin area ➔ Settings` and uncheck
...
@@ -242,6 +242,33 @@ verification requirement. Navigate to `Admin area ➔ Settings` and uncheck
**Require users to prove ownership of custom domains**
in the Pages section.
**Require users to prove ownership of custom domains**
in the Pages section.
This setting is enabled by default.
This setting is enabled by default.
### Access control
Access control was
[
introduced
](
https://gitlab.com/gitlab-org/gitlab-ce/issues/33422
)
in GitLab 11.5. It can be configured per-project, and allows access to a Pages
site to be controlled based on a user's membership to that project.
Access control works by registering the Pages daemon as an OAuth application
with GitLab. Whenever a request to access a private Pages site is made by an
unauthenticated user, the Pages daemon redirects the user to GitLab. If
authentication is successful, the user is redirected back to Pages with a token,
which is persisted in a cookie. The cookies are signed with a secret key, so
tampering can be detected.
Each request to view a resource in a private site is authenticated by Pages
using that token. For each request it receives, it makes a request to the GitLab
API to check that the user is authorized to read that site.
Pages access control is currently disabled by default. To enable it, you must:
1.
Enable it in
`/etc/gitlab/gitlab.rb`
```ruby
gitlab_pages['access_control'] = true
```
1.
[
Reconfigure GitLab
][
reconfigure
]
## Activate verbose logging for daemon
## Activate verbose logging for daemon
Verbose logging was
[
introduced
](
https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/2533
)
in
Verbose logging was
[
introduced
](
https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/2533
)
in
...
...
doc/administration/pages/source.md
View file @
5b78aaf1
...
@@ -391,6 +391,44 @@ the first one with a backslash (\). For example `pages.example.io` would be:
...
@@ -391,6 +391,44 @@ the first one with a backslash (\). For example `pages.example.io` would be:
server_name ~^.*\.pages\.example\.io$;
server_name ~^.*\.pages\.example\.io$;
```
```
## Access control
Access control was
[
introduced
](
https://gitlab.com/gitlab-org/gitlab-ce/issues/33422
)
in GitLab 11.5. It can be configured per-project, and allows access to a Pages
site to be controlled based on a user's membership to that project.
Access control works by registering the Pages daemon as an OAuth application
with GitLab. Whenever a request to access a private Pages site is made by an
unauthenticated user, the Pages daemon redirects the user to GitLab. If
authentication is successful, the user is redirected back to Pages with a token,
which is persisted in a cookie. The cookies are signed with a secret key, so
tampering can be detected.
Each request to view a resource in a private site is authenticated by Pages
using that token. For each request it receives, it makes a request to the GitLab
API to check that the user is authorized to read that site.
Pages access control is currently disabled by default. To enable it, you must:
1.
Modify your
`config/gitlab.yml`
file:
```
yaml
pages
:
access_control
:
true
```
1.
[
Restart GitLab
][
restart
]
1.
Create a new
[
system OAuth application
](
../../integration/oauth_provider.md#adding-an-application-through-the-profile
)
This should be called
`GitLab Pages`
and have a
`Redirect URL`
of
`https://projects.example.io/auth`
. It does not need to be a "trusted"
application, but it does need the "api" scope.
1.
Start the Pages daemon with the following additional arguments:
```shell
-auth-client-secret <OAuth code generated by GitLab> \
-auth-redirect-uri http://projects.example.io/auth \
-auth-secret <40 random hex characters> \
-auth-server <URL of the GitLab instance>
```
## Change storage path
## Change storage path
Follow the steps below to change the default path where GitLab Pages' contents
Follow the steps below to change the default path where GitLab Pages' contents
...
...
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