-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from internet2/workbench-PC
Add proxy,ldap/sql admin UI, jump page
- Loading branch information
Showing
23 changed files
with
1,289 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # https://wiki.shibboleth.net/confluence/display/SHIB2/NativeSPApacheConfig | ||
|
|
||
| # RPM installations on platforms with a conf.d directory will | ||
| # result in this file being copied into that directory for you | ||
| # and preserved across upgrades. | ||
|
|
||
| # For non-RPM installs, you should copy the relevant contents of | ||
| # this file to a configuration location you control. | ||
|
|
||
| # | ||
| # Load the Shibboleth module. | ||
| # | ||
| LoadModule mod_shib /usr/lib64/shibboleth/mod_shib_24.so | ||
|
|
||
| # | ||
| # Turn this on to support "require valid-user" rules from other | ||
| # mod_authn_* modules, and use "require shib-session" for anonymous | ||
| # session-based authorization in mod_shib. | ||
| # | ||
| ShibCompatValidUser Off | ||
|
|
||
| # | ||
| # Ensures handler will be accessible. | ||
| # | ||
| <Location /grouperSSO/Shibboleth.sso> | ||
| AuthType None | ||
| Require all granted | ||
| SetHandler shib | ||
| </Location> | ||
|
|
||
| # | ||
| # Used for example style sheet in error templates. | ||
| # | ||
| <IfModule mod_alias.c> | ||
| <Location /shibboleth-sp> | ||
| AuthType None | ||
| Require all granted | ||
| </Location> | ||
| Alias /shibboleth-sp/main.css /usr/share/shibboleth/main.css | ||
| </IfModule> | ||
|
|
||
| # | ||
| # Configure the module for content. | ||
| # | ||
| # You MUST enable AuthType shibboleth for the module to process | ||
| # any requests, and there MUST be a require command as well. To | ||
| # enable Shibboleth but not specify any session/access requirements | ||
| # use "require shibboleth". | ||
| # | ||
| <Location /secure> | ||
| AuthType shibboleth | ||
| ShibRequestSetting requireSession 1 | ||
| require shib-session | ||
| </Location> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.