gitlab-org--gitlab-foss/doc/integration/cas.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
2.6 KiB
Markdown
Raw Normal View History

---
stage: Manage
group: Authentication and Authorization
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
---
# CAS OmniAuth provider (deprecated) **(FREE SELF)**
WARNING:
This feature was [deprecated](https://gitlab.com/gitlab-org/gitlab/-/issues/369127) in GitLab 15.3 and is planned for
removal in 16.0.
2015-11-12 04:25:31 +00:00
To enable the CAS OmniAuth provider you must register your application with your
CAS instance. This requires the service URL GitLab supplies to CAS. It should be
something like: `https://gitlab.example.com:443/users/auth/cas3/callback?url`.
Handling for Single Logout (SLO) is enabled by default, so you only have to
configure CAS for back-channel logout.
2015-11-12 04:25:31 +00:00
1. On your GitLab server, open the configuration file.
2015-11-12 04:25:31 +00:00
For Omnibus package:
2015-11-12 04:25:31 +00:00
```shell
sudo editor /etc/gitlab/gitlab.rb
```
2015-11-12 04:25:31 +00:00
For installations from source:
2015-11-12 04:25:31 +00:00
```shell
cd /home/git/gitlab
2015-11-12 04:25:31 +00:00
sudo -u git -H editor config/gitlab.yml
```
2015-11-12 04:25:31 +00:00
1. See [Configure initial settings](omniauth.md#configure-initial-settings) for initial settings.
2015-11-12 04:25:31 +00:00
1. Add the provider configuration:
2015-11-12 04:25:31 +00:00
For Omnibus package:
2015-11-12 04:25:31 +00:00
```ruby
gitlab_rails['omniauth_providers'] = [
{
name: "cas3",
label: "Provider name", # optional label for login button, defaults to "Cas3"
args: {
url: "CAS_SERVER",
login_url: "/CAS_PATH/login",
service_validate_url: "/CAS_PATH/p3/serviceValidate",
logout_url: "/CAS_PATH/logout"
}
}
]
```
2015-11-12 04:25:31 +00:00
For installations from source:
2015-11-12 04:25:31 +00:00
```yaml
- { name: 'cas3',
label: 'Provider name', # optional label for login button, defaults to "Cas3"
args: {
url: 'CAS_SERVER',
login_url: '/CAS_PATH/login',
service_validate_url: '/CAS_PATH/p3/serviceValidate',
logout_url: '/CAS_PATH/logout' } }
```
2015-11-12 04:25:31 +00:00
1. Change 'CAS_PATH' to the root of your CAS instance (such as `cas`).
2015-11-12 04:25:31 +00:00
1. If your CAS instance does not use default TGC lifetimes, update the `cas3.session_duration` to at least the current TGC maximum lifetime. To explicitly disable SLO, regardless of CAS settings, set this to 0.
2015-11-12 04:25:31 +00:00
1. Save the configuration file.
2015-11-12 04:25:31 +00:00
1. For the changes to take effect:
- If you installed via Omnibus, [reconfigure GitLab](../administration/restart_gitlab.md#omnibus-gitlab-reconfigure).
- If you installed from source, [restart GitLab](../administration/restart_gitlab.md#installations-from-source).
2015-11-12 04:25:31 +00:00
2015-12-21 16:37:55 +00:00
On the sign in page there should now be a CAS tab in the sign in form.