-
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 #2 from internet2/add-web-proxy
Add web proxy
- Loading branch information
Showing
3 changed files
with
30 additions
and
5 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
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,6 @@ | ||
| FROM tier/shibboleth_sp:latest | ||
|
|
||
| COPY container_files/httpd/proxy.conf /etc/httpd/conf.d/ | ||
|
|
||
|
|
||
|
|
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,11 @@ | ||
| #Proxy config | ||
| ProxyPass /midpoint https://midpoint:10443/midpoint | ||
| ProxyPass /grouper https://grouper:8443/grouper | ||
| ProxyPass /grouper-ws https://grouper_ws:9443/grouper-ws | ||
| ProxyPass /idp https://idp:13443/ | ||
| ProxyPass /rabbit https://rabbit:15672/ | ||
| #ProxyPass /ldap https://localhost:10389/midpoint | ||
| ProxyPass /comanage https://comanage:12443/ | ||
| #add reverseProxy | ||
| #PassReverse / http://localhost:8090/ | ||
|
|