-
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.
- Loading branch information
Paul Caskey
authored and
Paul Caskey
committed
Oct 28, 2020
1 parent
2be7b43
commit 8269a6f
Showing
7 changed files
with
94 additions
and
22 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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,28 @@ | ||
| #Proxy config | ||
| SSLProxyEngine on | ||
| SSLProxyVerify none | ||
| SSLProxyCheckPeerCN off | ||
| SSLProxyCheckPeerName off | ||
| SSLProxyCheckPeerExpire off | ||
| ProxyPreserveHost On | ||
|
|
||
| ProxyPass /midpoint https://midpoint-server/midpoint | ||
| ProxyPassReverse /midpoint https://midpoint-server/midpoint | ||
|
|
||
| ProxyPass /grouper https://grouper-ui/grouper | ||
| ProxyPassReverse /grouper https://grouper-ui/grouper | ||
| ProxyPass /grouperSSO https://grouper-ui/grouperSSO | ||
| ProxyPassReverse /grouperSSO https://grouper-ui/grouperSSO | ||
|
|
||
| ProxyPass /grouper-ws https://grouper-ws/grouper-ws | ||
| ProxyPass /idp https://idp/ | ||
| ProxyPassReverse /grouper-ws https://grouper-ws/grouper-ws | ||
|
|
||
| ProxyPass /idp https://idp/idp | ||
| ProxyPassReverse /idp https://idp/idp | ||
|
|
||
| ProxyPass /rabbit https://mq:15672/ | ||
| ProxyPassReverse /rabbit https://mq:15672/ | ||
|
|
||
| ProxyPass /comanage https://comanage/ | ||
| ProxyPassReverse /comanage https://comanage/ | ||
|
|