Hi;
I want to replace Apache Reverse Proxy with Novell Access Gateway 3.1. Current Apache reverse proxies httpd.conf file has the following entries below. They are using Apache reverse proxy for Sap portal which is in the Intranet zone.
#Portal Proxy Configuration First Part
ProxyPass /
http://dmsprprt.example.net:50000/
ProxyPassReverse /
http://dmsprprt.example.net:50000/
#Portal Proxy Configuration Second Part
RewriteRule ^/(sap\(.*)$ http://dmsprddb.example.net:8001/$1 [P,NC,L]
ProxyPass /sap/
http://dmsprddb.example.net:8001/sap/
ProxyPassReverse /sap/
http://dmsprddb.example.net:8001/sap/
For the above configuration i have generated multi-homing path based configuration on the Access Gateway(AG). Everything is okey but i couldn't handle the config line below
RewriteRule ^/(sap\(.*)$ http://dmsprddb.example.net:8001/$1 [P,NC,L]
I couldn't write regular expressions entries for paths like /sap* or /sap*/ it didn't accept regular expressions on path list, its not allowed. How could i handle this problem. I have tried HTML Rewriting techniques but they didn't handle solve my case. I want /sapx, /sapy, /sapxx and other underfined entries which started with /sap* directly go to the
http://dmsprddb.example.net:8001 server.
Thanks for all replies.