What is the difference between a ProxyPass
directive:
ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
And a <Proxy>
directive:
<Proxy http://localhost:8080/*>
Order deny,allow
Allow from all
</Proxy>
In Apache configuration files?
I often see these two in the same virtualhost
section, an I am not sure what is the difference.