AquaLogic Interaction Administrator Guide

     Previous Next  Open TOC in new window   View as PDF - New Window  Get Adobe Reader - New Window
Content starts here

How Do I Configure Reverse Proxy with My SSO Deployment Using Apache HTTP Server?

  1. Install the version of the Apache HTTP server recommended by the Oblix Installation Guide. For Netpoint 6.5, Oblix recommends the latest version of the Apache, v1.3 line. The configuration described in this example has been tested with version v1.3.29.
  2. Turn on the proxy module inside of the Apache configuration. To do so, edit apache_install_dir/conf/httpd.conf to uncomment the lines titled LoadModule proxy_module modules/mod_proxy.so and AddModule mod_proxy.c. (To uncomment a line, remove the pound symbol (#) at the beginning of the line).
  3. Configure Apache to act as a reverse proxy for your portal. To do so, add lines similar to the following example at the end of httpd.conf:
    ProxyRequests Off
    ProxyPass /portal http://your_portal_server.domain.com:7001/portal
    ProxyPassReverse /portal http://your_portal_server.domain.com:7001/portal
    This example configuration redirects requests from the Apache Web server (http://proxy_server.domain.com:80/portal/xyz) to the portal application server (http://your_portal_server.domain.com:7001/portal/xyz). You must specify the fully qualified domain name here and for all other times you type in the server names. For more information on Apache reverse proxy, see http://httpd.apache.org/docs/mod/mod_proxy.html.
  4. Start or reboot the Apache HTTP server.

  Back to Top      Previous Next