I'm using apache as a proxy, and am trying to proxy every on the basepath, unless it is '/tinymce'
So the logical (I thought) process would be to use the LocationMatch directive as per something like:
Code: Select all
<LocationMatch /(?!tinymce)*>
ProxyPass http://127.0.0.1:9090/seaside/
ProxyPassReverse http://127.0.0.1:9090/seaside/
</LocationMatch>Any suggestions?
TIA!
EDIT:
Now working with:
Code: Select all
<Location /tinymce>
ProxyPass !
</Location>
<Location />
ProxyPass http://127.0.0.1:9090/seaside/
ProxyPassReverse http://127.0.0.1:9090/seaside/
</Location>