Last active
August 29, 2015 14:21
-
-
Save raj-rajaratnam/ee377896a41022c9b17f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <VirtualHost *:443> | |
| ServerAdmin [email protected] | |
| ServerName bamproxy.example.com | |
| ServerAlias bamproxy.example.com | |
| ProxyRequests Off | |
| SSLEngine On | |
| SSLProxyEngine On | |
| SSLProxyVerify none | |
| SSLProxyCheckPeerCN off | |
| SSLProxyCheckPeerName off | |
| SSLProxyCheckPeerExpire off | |
| SSLCertificateFile /home/rajkumar/security/server.crt | |
| SSLCertificateKeyFile /home/rajkumar/security/server.key | |
| <Proxy *> | |
| Order deny,allow | |
| Allow from all | |
| </Proxy> | |
| ProxyPass /bamcarbon https://bam.example.com:9443/carbon | |
| ProxyPassReverse /bamcarbon https://bam.example.com:9443/carbon | |
| ProxyPass /activitymonitoring https://bam.example.com:9443/activitymonitoring | |
| ProxyPassReverse /activitymonitoring https://bam.example.com:9443/activitymonitoring | |
| ProxyPass /messageconsole https://bam.example.com:9443/messageconsole | |
| ProxyPassReverse /messageconsole https://bam.example.com:9443/messageconsole | |
| ProxyPass /bamdashboards https://bam.example.com:9443/bamdashboards | |
| ProxyPassReverse /bamdashboards https://bam.example.com:9443/bamdashboards | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment