Configuring Apache-based Reverse Proxy Servers for a REN Server

Apache-based proxy servers vary widely in configurations; here we present an example configuration. The configuration files for your environment may be quite different.

To proxy for RenServer, find and edit the httpd.conf configuration file. Make the following modifications to the file:

  1. Move the line LoadModule proxy_module modules/ApacheProxyModule.dll to the bottom of the file.

  2. Comment out the line AddModule mod_proxy.c.

  3. Add the following five lines after LoadModule proxy_module:

    <IfModule mod_proxy.c> 
      ProxyRequests Off 
      ProxyPass /psren http://machine:7180/psren 
      ProxyPassReverse /psren http://machine:7180/psren 
    </IfModule>
    
  4. Reboot your web server and reverse proxy server.