-
Notifications
You must be signed in to change notification settings - Fork 0
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
Jim Van Fleet
committed
Sep 8, 2016
1 parent
0fad771
commit eecf97a
Showing
4 changed files
with
28 additions
and
17 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,25 @@ | ||
| Listen 443 | ||
| <VirtualHost *:443> | ||
| ServerAlias grouper.your.institution.edu | ||
|
|
||
| SSLEngine on | ||
| SSLCertificateFile /etc/httpd/certs/server.crt | ||
| SSLCertificateKeyFile /etc/httpd/certs/server.key | ||
| #SSLCertificateChainFile /etc/httpd/certs/your_bundle.pem | ||
|
|
||
| SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:!aNULL:!MD5 | ||
| SSLHonorCipherOrder on | ||
|
|
||
| ProxyRequests Off | ||
| ProxyVia Off | ||
|
|
||
| <Proxy *> | ||
| Require all granted | ||
| </Proxy> | ||
|
|
||
| ProxyPreserveHost On | ||
| ProxyPass /grouper/ ajp://localhost:8009/grouper/ retry=0 | ||
| ProxyPass /grouper-ws/ ajp://localhost:8009/grouper-ws/ retry=0 | ||
| ProxyPass /examples/ ajp://localhost:8009/examples/ retry=0 | ||
|
|
||
| </VirtualHost> |
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
| # The presence of this file indicates this container is | ||
| # part of a Grouper appliance. |