Thursday, February 25, 2010

Configure Reverse Proxy for Oracle Access Manager consoles

Though it is not tough job to implement this, I thought there is nothing wrong in sharing. It is some times necessary to reverse proxy Oracle Access Manger consoles through Oracle HTTP Server or Apache Server etc.,
Lets assume the OAM consoles are like this:
http://oam.domain.com:7007/access/oblix
http://oam.domain.com:7007/identity/oblix
Lets assume you have OHS or Apache server running on port 80. Open the httpd.conf file and goto the end of the file and paste the below lines.
ProxyPass /access/oblix  http://oam.domain.com:7007/access/oblix
ProxyPassReverse /access/oblix  http://oam.domain.com:7007/access/oblix
ProxyPass /identity/oblix  http://oam.domain.com:7007/identity/oblix
ProxyPassReverse /identity/oblix  http://oam.domain.com:7007/identity/oblix
Now, you can access the OAM consoles through Apache server with the url, http://apache_host_name/access/oblix.

No comments:

Post a Comment