gitlab-org--gitlab-foss/doc/public_access/public_access.md

106 lines
4.3 KiB
Markdown
Raw Normal View History

---
stage: none
group: unassigned
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
type: reference
---
2014-04-24 22:48:22 +00:00
# Public access
2014-04-24 22:48:22 +00:00
GitLab allows [Owners](../user/permissions.md) to set a project's visibility as **public**, **internal**,
or **private**. These visibility levels affect who can see the project in the
public access directory (`/public` under your GitLab instance), like at <https://gitlab.com/public>
## Visibility of projects
### Public projects
2014-04-24 22:48:22 +00:00
Public projects can be cloned **without any** authentication over HTTPS.
2014-04-24 22:48:22 +00:00
They are listed in the public access directory (`/public`) for all users.
2014-04-24 22:48:22 +00:00
**Any logged in user** has [Guest permissions](../user/permissions.md)
on the repository.
### Internal projects
2014-04-24 22:48:22 +00:00
Internal projects can be cloned by any logged in user except [external users](../user/permissions.md#external-users).
2014-04-24 22:48:22 +00:00
They are also listed in the public access directory (`/public`), but only for logged
in users.
2014-04-24 22:48:22 +00:00
Any logged in users except [external users](../user/permissions.md#external-users) have [Guest permissions](../user/permissions.md)
2016-06-26 03:43:10 +00:00
on the repository.
NOTE:
From July 2019, the `Internal` visibility setting is disabled for new projects, groups,
and snippets on GitLab.com. Existing projects, groups, and snippets using the `Internal`
visibility setting keep this setting. You can read more about the change in the
[relevant issue](https://gitlab.com/gitlab-org/gitlab/-/issues/12388).
2018-07-09 10:48:18 +00:00
### Private projects
Private projects can only be cloned and viewed by project members (except for guests).
They appear in the public access directory (`/public`) for project members only.
2018-07-09 10:48:18 +00:00
### How to change project visibility
2014-04-24 22:48:22 +00:00
1. Go to your project's **Settings**.
1. Change **Visibility Level** to either Public, Internal, or Private.
2014-04-24 22:48:22 +00:00
2016-03-22 10:36:43 +00:00
## Visibility of groups
NOTE:
[Starting with](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/3323) GitLab 8.6,
2019-06-12 05:47:06 +00:00
the group visibility has changed and can be configured the same way as projects.
In previous versions, a group's page was always visible to all users.
2016-03-22 10:36:43 +00:00
Like with projects, the visibility of a group can be set to dictate whether
anonymous users, all signed in users, or only explicit group members can view
it. The restriction for visibility levels on the application setting level also
applies to groups, so if that's set to internal, the explore page is empty
2016-03-22 10:36:43 +00:00
for anonymous users. The group page now has a visibility level icon.
Admin users cannot create subgroups or projects with higher visibility level than that of the immediate parent group.
2014-04-24 22:48:22 +00:00
## Visibility of users
The public page of a user, located at `/username`, is always visible whether
you are logged in or not.
When visiting the public page of a user, you can only see the projects which
you are privileged to.
If the public level is restricted, user profiles are only visible to logged in users.
## Visibility of pages
By default, the following directories are visible to unauthenticated users:
- Public access (`/public`).
- Explore (`/explore`).
- Help (`/help`).
However, if the access level of the `/public` directory is restricted, these directories are visible only to logged in users.
2014-04-24 22:48:22 +00:00
## Restricting the use of public or internal projects
You can restrict the use of visibility levels for users when they create a project or a
snippet. This is useful to prevent users from publicly exposing their repositories
by accident. The restricted visibility settings do not apply to admin users.
For details, see [Restricted visibility levels](../user/admin_area/settings/visibility_and_access_controls.md#restricted-visibility-levels).
<!-- ## Troubleshooting
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
one might have when setting this up, or when something is changed, or on upgrading, it's
important to describe those, too. Think of things that may go wrong and include them here.
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.
Each scenario can be a third-level heading, e.g. `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->