I am trying to use rabbit as a reverse proxy. <div><br></div><div>So far I have altered the sample conf/nocache.conf by updating "httpinfilters=rabbit.filter.HttpBaseFilter,rabbit.filter.ReverseProxy" and added section<div>
  [rabbit.filter.ReverseProxy]</div><div><div>  # Change requests starting with / to <a href="http://www.google.com/">http://www.google.com/</a></div><div>  transformMatch=^/(.*)</div><div>  transformTo=<a href="http://www.google.com/$1">http://www.google.com/$1</a></div>
<div>  # Deny proxy requests, you probably want this. </div><div>  deny=^http(s?)://.*</div><div>  # If we want to allow admin access.</div><div>  allowMeta=false</div><div><br></div><div>At this point I had expected that executing `java -jar jars/rabbit3.jar -f conf/nocache.conf` would allow me to navigate to <a href="http://localhost:9667">http://localhost:9667</a> in a web browser (without any proxy settings in browser) and see <a href="http://google.com">google.com</a></div>
<div>What am I doing wrong, is there a different port or some alternate means for engaging the reverseproxy aspect of RabbIT?</div><div><br></div><div>Thanks for any help or pointers you can provide.</div></div></div>