I have a server with a proxy pass:
ProxyPass /service/ http://192.168.0.12/
ProxyPassReverse /service/ http://192.168.0.12/
ProxyRemote http://192.168.0.12/ http://myproxy.com:8123
however, for performance, I want to start serving the images directly fron the main machine with:
Alias /service/IMG2/ /var/www/Images/
But, it seems the proxy is always executed without taking into account the Alias. Is there a way to indicate apache to use the Alias before the proxypass?