DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=38864>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=38864 ------- Additional Comments From [EMAIL PROTECTED] 2006-03-06 21:24 ------- ProxyPass does not work with regular expressions. Thus it does not work inside LocationMatch. Apart from the discussion if this is a bug and if yes if it is a bug in the documentation or in the code you can use mod_rewrite to solve your problem: RewriteEngine on RewriteRule (^/myproject/.+\.(jsp|frm)$) balancer://myCluster$1 <Proxy balancer://myCluster> BalancerMember http://127.0.0.1:8080 BalancerMember http://127.0.0.1:8081 ProxySet stickysession=JSESSIONID </Proxy> ProxyPassReverse /myproject http://127.0.0.1:8080/myproject ProxyPassReverse /myproject http://127.0.0.1:8081/myproject Please keep in mind that you MUST use ProxySet AFTER the BalancerMember directives. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
