Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
omniauth-cas
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nounous-archives
omniauth-cas
Commits
ba147ed3
Commit
ba147ed3
authored
12 years ago
by
Derek Lindahl
Browse files
Options
Downloads
Plain Diff
Merge pull request #6 from rbq/master
Add a migration guide from OmniAuth 0.3
parents
6392698d
91a11c10
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+18
-0
18 additions, 0 deletions
README.md
with
18 additions
and
0 deletions
README.md
+
18
−
0
View file @
ba147ed3
...
...
@@ -50,6 +50,24 @@ Other configuration options:
*
`ca_path`
- Optional when
`ssl`
is
`true`
. Sets path of a CA certification directory. See
[
Net::HTTP
][
net_http
]
for more details
*
`disable_ssl_verification``- Optional when `
ssl
` is true. Disables verification.
## Migrating from OmniAuth 0.3
Given the following OA 0.3 configuration:
```
provider :CAS, :cas_server => 'https://cas.example.com/cas/'
```
... your new settings should look similar to this:
```
provider :cas, :host => 'cas.example.com',
:login_url => '/cas/login',
:service_validate_url => '/cas/serviceValidate'
```
If you encounter problems wih SSL certificates you may want to set the `
ca_path
` parameter or activate `
disable_ssl_verification
` (not recommended).
## Contributing
1. Fork it
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment